设置UIImageView的图像属性 - 不起作用

时间:2010-08-18 20:09:38

标签: objective-c cocoa-touch uiimageview

以下是相关代码

·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;

1 个答案:

答案 0 :(得分:0)

  1. 请勿忘记@synthesize指令后面的分号。
  2. 您是否已将IBOutlet连接到Interface Builder中的控制器?
  3. 您有内存泄漏:UIImageView保留其图片,因此您需要release您在方法中分配的图像。