我正在尝试从 URL 获取图像并将其显示在UIImageview
. 但是,我无法将我的代码连接到我的图像,因为我不知道如何连接。以前我只是制作了一个 nib 文件并在那里进行编码,但是由于我将我的应用程序转移到 iOS 6 并且想使用 astoryboard
我不知道如何实现同样的事情:
- (void)viewDidLoad
{
[super viewDidLoad];
NSString * imageURL = [NSString stringWithFormat:@"http://app-content.app.com/api_ios/images/%@.png",
[[NSUserDefaults standardUserDefaults] objectForKey:@"setup"]];
NSURL* url = [NSURL URLWithString: imageURL];
NSData * imageData = [NSData dataWithContentsOfURL:url];
UIImage * image = [UIImage imageWithData:imageData];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
}
如您所见,我正在从网站加载图像,并将 URL 中的字符串更改为NSUserdefaults
. 我想链接imageview
到我的图像,storyboard
但它不允许我,我也不能在UIimageview
. 用 a 执行此操作的正确方法是什么storyboard
?