我在视图控制器中插入了一个图像视图,但实际上并不知道如何在其上显示图像。
我试过这个:
- (void)viewDidLoad
{
[super viewDidLoad];
id path = @"http://thestylishdog.com/wp-content/uploads/2009/07/cute-dog2.jpg";
NSURL *url = [NSURL URLWithString:path];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImageView *firstImage = [[UIImage alloc] initWithData:data cache:NO];
}
但随后它说'UIimage 没有可见的@interface 声明了选择器 initwithData:cache'
我尝试将此行添加到 .h 文件中,但也不起作用:
@property (nonatomic, retain) UIImageView *firstImage;
我知道最后一步是将 .h 创建类分配给视图控制器中的 UIimage。