-(void)testPrintf:(NSString **)testString
{
*testString=[*testString stringByAppendingFormat:@"%d",12];
}
NSString *test=@"test";
[selftestPrintf:&test];
NSlog(@"%@",test);
本文共 241 字,大约阅读时间需要 1 分钟。
-(void)testPrintf:(NSString **)testString
{
*testString=[*testString stringByAppendingFormat:@"%d",12];
}
NSString *test=@"test";
[selftestPrintf:&test];
NSlog(@"%@",test);
转载于:https://www.cnblogs.com/wolfsky6/archive/2012/11/19/2777773.html