以下是相关代码
·H
IBOutlet UIImageView *productImageView;
@property(nonatomic, retain) IBOutlet UIImageView *productImageView;
的.m
@synthesize productImageView
在initWithNibName自定义初始化中:
NSURL *url = [NSURL URLWithString: [NSString stringWithFormat:@"http://www.myurl.net/test.jpg"]];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
productImageView.image = image;
答案 0 :(得分:0)
@synthesize
指令后面的分号。IBOutlet
连接到Interface Builder中的控制器?UIImageView
保留其图片,因此您需要release
您在方法中分配的图像。