我正在尝试从网络加载图片。要初始化Data i,请使用以下方法:
NSData *imageData = [[NSData alloc] initWithContentsOfURL:self.imageUrl];
但是我收到了这个错误:
[__NSCFString isFileURL]: unrecognized selector sent to instance 0x817a4f0
2013-08-26 09:45:53.221 CorePhoto[1643:3f03] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFString isFileURL]: unrecognized selector sent to instance 0x817a4f0'
当然,self.imageUrl是一个NSURL属性。
这是imageUrl网址的一个例子:
http://farm5.static.flickr.com/4016/4555417946_e6332481b3_b.jpg
这是我方法的完整代码:
- (void)resetImage
{
if (self.scrollView) {
if (self.imageUrl) {
//before to set the content, we reset it
self.scrollView.contentSize = CGSizeZero;
self.imageView.image = nil;
[self.spinner startAnimating];
dispatch_queue_t loadImageQ = dispatch_queue_create("load image thread", NULL);
dispatch_async(loadImageQ, ^(void) {
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
NSData *imageData = [[NSData alloc] initWithContentsOfURL:self.imageUrl];
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
UIImage *image = [[UIImage alloc] initWithData:imageData];
dispatch_async(dispatch_get_main_queue(), ^(void) {
if (image) {
self.scrollView.zoomScale = 1.0;
self.scrollView.contentSize = image.size;
self.imageView.image = image;
self.imageView.frame = CGRectMake(0, 0, image.size.width, image.size.height);
}
[self.spinner stopAnimating];
});
});
}
}
}
我的initWithContentsOfURL方法有什么问题?谢谢 感谢
答案 0 :(得分:1)
imageUrl
可以定义为NSURL
属性,但您已将其值设置为NSString
实例。在许多情况下,这可能不会给你编译器警告,并且在你尝试使用它之前不会抛出异常。
检查您设置imageUrl
的位置并确保验证类型并创建NSURL
。