在xcode 4.2中运行analyze时,我发出警告“在初始化期间存储到'image'的值永远不会被读取。”任何人都可以帮我解决代码有什么问题?
UIImage *image=[[[UIImage alloc] init]autorelease];
if (carousel==recipeCarousel) {
image = [recipeItems objectAtIndex:index];
} else {
image = [packItems objectAtIndex:index];
}
UIView *view = [[[UIImageView alloc] initWithImage:image] autorelease];
return view;
谢谢。
答案 0 :(得分:5)
您已使用此代码
分配UIImageUIImage *image=[[[UIImage alloc] init]autorelease];
但稍后您在recipeItems
或packItems
这样你就会失去对分配对象的控制权。
所以你可以这样做
UIImage *image = nil;
if (carousel==recipeCarousel) {
image = [recipeItems objectAtIndex:index];
} else {
image = [packItems objectAtIndex:index];
}
或
NSArray *targetItems = nil;
if (carousel==recipeCarousel) {
targetItems = recipeItems;
} else {
targetItems = packItems;
}
UIImage *image = [targetItems objectAtIndex:index];