0

我正在使用一些正则表达式来获取 xml 中的第一个 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'

这有什么问题?

4

1 回答 1

0

你不能使用 urlimageView.image所以你可以像下面这样使用它

NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"your image link"]];
UIImage *downloadedImage = [UIImage imageWithData:imageData];
cell.imageView.image = downloadedImage;

但它会产生崩溃...

笔记

要克服这种崩溃,您必须异步点击 URL。这样它不会产生崩溃并且表格将自由滚动

于 2013-04-02T15:17:33.100 回答