在背景线程上的IOS警告

时间:2017-03-06 08:34:10

标签: ios objective-c iphone background

我正在后台线程上下载图像,并在主线程上将此图像设置为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];
     });
 });

请告诉我可能存在的问题以及解决方法。

如果我遗漏任何内容,也请告诉我任何解释。

提前谢谢。

2 个答案:

答案 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)