我正在使用这个 NSURL 代码来显示图像。我想要做的是从我的数据库表中插入一个 url 来代替下面代码中显示的静态 url:
有谁知道我应该如何进行?
NSURL *url = [NSURL URLWithString:@"http://www.nyapplecountry.com/images/photosvarieties/redrome04.jpg"];
UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
[self.view addSubview:[[UIImageView alloc] initWithImage:image]];
[self.containerView addSubview:self.mainView];
我在想类似的东西:
NSString *urlAddress = [NSString stringWithFormat:@"%@", place.url];
place.url
我的数据库表来自哪里。我错过了一些东西,不知道是什么。
谢谢你的帮助