【发布时间】:2014-05-05 16:45:10
【问题描述】:
我正在将CIFilter 应用到UIImage,但它会减慢我的UITableView 上的滚动速度。有什么我能做的吗?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *simpleTableIdentifier = @"tweetCell";
TweetCell *cell = (TweetCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"TweetCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.tweet.text = _tweets[indexPath.row][@"text"];
NSDictionary *tweetData = _tweets[indexPath.row];
NSString *profilePhotoURL = _profilePhotos[tweetData[@"username"]];
UIImage *bgPicture = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:profilePhotoURL]]];
dispatch_async(dispatch_get_main_queue(), ^(void){
CIFilter *gaussianBlurFilter = [CIFilter filterWithName:@"CIGaussianBlur"];
[gaussianBlurFilter setDefaults];
[gaussianBlurFilter setValue:[CIImage imageWithCGImage:[bgPicture CGImage]] forKey:kCIInputImageKey];
[gaussianBlurFilter setValue:@0.7 forKey:kCIInputRadiusKey];
CIImage *outputImage = [gaussianBlurFilter outputImage];
CIContext *context = [CIContext contextWithOptions:nil];
CGRect rect = [outputImage extent];
rect.origin.x += (rect.size.width - bgPicture.size.width ) / 2;
rect.origin.y += (rect.size.height - bgPicture.size.height) / 2;
rect.size = bgPicture.size;
CGImageRef cgimg = [context createCGImage:outputImage fromRect:rect];
UIImage *image = [UIImage imageWithCGImage:cgimg];
CGImageRelease(cgimg);
cell.bgP.image = image;
});
return cell;
}
我的意思是我已经添加了确实使滚动更好一点的调度部分。但是当我在UITableView 上快速滚动时,会加载图像和图像过滤器,但滚动时会经常出现颠簸或锯齿状。
【问题讨论】:
标签: ios objective-c cifilter