作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些代码可以获取缩略图,对其应用 CoreImage
过滤器,然后将其设置为自定义 UITableViewCell 的
imageView
属性:
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
^{
CIImage *inputImage = [[CIImage imageWithCGImage:self.thumbnail.CGImage]retain];
CIFilter *filter = [[CIFilter filterWithName:@"CISepiaTone" keysAndValues:
kCIInputImageKey, inputImage,
@"inputIntensity", [NSNumber numberWithFloat:1.0],
nil] retain];
CIImage *outputImage = [[filter outputImage] retain];
CGImageRef cgimage = [self.context createCGImage:outputImage fromRect:[outputImage extent]];
filtersTableViewCellItem.thumbnail = [UIImage imageWithCGImage:cgimage];
[filter release];
[outputImage release];
[inputImage release];
CGImageRelease(cgimage);
dispatch_async(dispatch_get_main_queue(),
^{
UITableViewCell *tableViewCell = [[self cellForRowAtIndexPath:indexPath] retain];
if (tableViewCell)
{
[filtersTableViewCell.activityIndicatorView stopAnimating];
filtersTableViewCell.imageView.image = filtersTableViewCellItem.thumbnail;
}
[tableViewCell release];
});
});
正在正确生成缩略图,但它不会在 imageView
上自行更新。我试过 setNeedsDisplay
没有用。有趣的是,当我使用类似这样的代码,但没有使用自定义 UITableViewCell
时,它运行得非常好。任何人都知道为什么这可能不起作用?
最佳答案
尝试重新加载该单元格:
[self.tableView reloadRowsAtIndexPath:indexPath withAnimation:UITableViewRowAnimationAutomatic]
关于iphone - UIImageView 图像未在 GCD 的主线程上更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14639282/
有人可以向我澄清主线 DHT 规范中的声明吗? Upon inserting the first node into its routing table and when starting up th
我正在尝试使用 USB 小工具驱动程序使嵌入式设备作为 MTP 设备工作。 我知道 Android 从大容量存储设备切换到 MTP 设备已经有一段时间了,并且找到了 source code for M
我是一名优秀的程序员,十分优秀!