我正在后台线程上下载图像,并在主线程上将此图像设置为UIImageView
。但它给了我一些警告,如
Using low GPU priority for background rendering
另请查看以下代码以供参考
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^(void) {
int randomImgNum = [[contentDict valueForKey:@"imageIndex"]intValue];
UIImage *image = [UIImage imageNamed:[Utils getImageFromIndex:randomImgNum]];
UIImage *newBlurredImage = [image blurredImageWithRadius:5.0];
dispatch_sync(dispatch_get_main_queue(), ^(void) {
customVieww.imgCardView.image = image;
[self setBlurrImage:newBlurredImage];
});
});
请告诉我可能存在的问题以及解决方法。
如果我遗漏任何内容,也请告诉我任何解释。
提前谢谢。
答案 0 :(得分:0)
如果要处理主视图,则必须使用主队列 因为如果使用后台队列来更改UIView
,它可能会导致问题更新代码:
dispatch_async(dispatch_get_main_queue(), ^{
int randomImgNum = [[contentDict valueForKey:@"imageIndex"]intValue];
UIImage *image = [UIImage imageNamed:[Utils getImageFromIndex:randomImgNum]];
UIImage *newBlurredImage = [image blurredImageWithRadius:5.0];
dispatch_sync(dispatch_get_main_queue(), ^(void) {
customVieww.imgCardView.image = image;
[self setBlurrImage:newBlurredImage];
});
});
答案 1 :(得分:0)
检查一下:
根据苹果文档,iOS不允许其GPU进入任何后台应用程序,原因很明显,它不在Foreground上。