我正在使用一些正则表达式来获取xml中的第一个URL,该URL是照片的链接,并将该照片设置为单元格的imageview图像。这是我的代码:
NSString *thearticleImage = entry.articleImage;
NSRegularExpression *expression = [NSRegularExpression regularExpressionWithPattern:@"(?i)\\b((?:[a-z][\\w-]+:(?:/{1,3}|[a-z0-9%])|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}/)(?:[^\\s()<>]+|\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\))+(?:\\(([^\\s()<>]+|(\\([^\\s()<>]+\\)))*\\)|[^\\s`!()\\[\\]{};:'\".,<>?«»“”‘’]))" options:NSRegularExpressionCaseInsensitive error:NULL];
NSString *someString = thearticleImage;
self.theurl = [someString substringWithRange:[expression rangeOfFirstMatchInString:someString options:NSMatchingCompleted range:NSMakeRange(0, [someString length])]];
cell.imageView.image = [NSURL URLWithString:theurl];
我最终得到了错误:
'-[NSURL _isResizable]: unrecognized selector sent to instance 0x882e250'
这有什么问题?
答案 0 :(得分:0)
您无法使用网址imageView.image
,因此您可以使用以下内容
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"your image link"]];
UIImage *downloadedImage = [UIImage imageWithData:imageData];
cell.imageView.image = downloadedImage;
但它会导致崩溃......
注意强>
要克服此崩溃,您必须异步点击URL。这样它不会产生崩溃,表格将自由滚动