在iPhone上使用objective-c,这段代码有什么问题?是不是内存泄露了?为什么?我将如何正确地做到这一点?
NSMutableString *result = [NSMutableString stringWithFormat:@"the value is %d", i];
...然后在我的代码中...我可能需要将其更改为:
result = [NSMutableString stringWithFormat:@"the value is now %d", i];
我需要第二次使用 stringWithFormat ......但这不是创建一个新字符串并且没有正确释放旧字符串吗?