我有一个问题:我想避免使用[UIImage imageNamed:]。
所以我做了:
UIImage *prodImg = [[UIImage alloc] initWithContentsOfFile:@"myimage.png"];
controller.productImg.image = prodImg;
[prodImg release];
但是现在该图像不再显示。
有谁知道如何使它工作?
最佳答案
上面的代码不起作用,因为正确的方法是-
NSString *thePath = [[NSBundle mainBundle] pathForResource:@"default" ofType:@"jpeg"];
UIImage *prodImg = [UIImage imageWithContentsOfFile:thePath];
controller.productImg.image = prodImg;
[prodImg release];
;)