我正在用 Objective-C 实现一个应用程序,然后开始分析它。看起来我对某些图像有一些问题。例如,我写过:
Example = [[UIImageView alloc] initWithFrame:CGRectMake(15, 70, 290, 98.5)];
UIImage * ImageExample = [UIImage imageNamed:@"Test.png"];
Example.image = ImageExample;
[ImageExample release];
[Menu addSubview:Example];
[Example release];
它给了我:
调用者此时不拥有的对象的引用计数不正确递减
我找到了一些示例,NSString
将其设为本地,并在使用后发布。
那么请问这种代码是怎么回事?