Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是使用 xcode 的新手,所以任何信息或链接都会有所帮助。如果我在 coredata 中有一个 RANDOM 网站 url,我将如何指导我的 UIImage 从该网站获取照片以在 iOS 中显示?
假设imageURL是NSString *您保存 URL 的 ivar 或属性。要获取图像,这应该可以工作:
imageURL
NSString *
NSURL *url = [NSURL URLWithString:imageURL]; NSData *imageData = [NSData dataWithContentsOfURL:url]; UIImage *myImage = [UIImage imageWithData: imageData];
当然,您应该添加一些错误检查,但这应该会让您进入正确的方向。