如何在后台队列上renderInContext?

时间:2014-07-14 15:00:10

标签: ios objective-c uiviewcontroller

我试图制作UIView的快照。我这样做的标准是'事情,但是,当我制作高性能的应用程序时,我想在后台队列上运行它。我知道来自后台线程UIKits的电话并不好。

在这种方法中,我试图四处走动并拍摄图层:

    -(void)caps{

    dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, .1 * NSEC_PER_SEC);

    dispatch_queue_t myQueue = dispatch_queue_create("com.myapp.shot", NULL);

         dispatch_after(popTime, myQueue, ^(void){
             [self capture];

         });
}



-(void)capture{
    NSLog(@"Start");
    float height;
    UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
    if(orientation == UIDeviceOrientationLandscapeLeft || orientation == UIDeviceOrientationLandscapeRight){
        height = 600;
    }else{
        height = 500;
    }
     dispatch_async(dispatch_get_main_queue(), ^{
  /// in .h @property CALayer *liar;
         if (!self.liar) {
             self.liar = myWebView.scrollView.layer;
             NSLog(@"MAIN THREAD %@", self.liar);
         }

     });
    UIGraphicsBeginImageContext(CGSizeMake(self.view.frame.size.width, height));

    NSLog(@"NEw THREAD %@", self.liar);
    [self.liar renderInContext:UIGraphicsGetCurrentContext()];

    self.sharedImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    NSLog(@"Finish %@", self.sharedImage);
}

大多数情况下它工作正常,但在某些情况下(当myWebView UIViewController不可见时 - 浏览器标签会隐藏它)它会引发我的错误:

bool _WebTryThreadLock(bool), 0x1adb1730: Tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now...
1   0x35f3b435 WebThreadLock
2   0x305b0b31 <redacted>
3   0x305b09ed <redacted>
4   0x305b0769 <redacted>
5   0x305b02cb <redacted>
6   0x30561353 <redacted>
7   0x301e7943 <redacted>
8   0x301e3167 <redacted>
9   0x30212425 <redacted>
10  0x30234f77 <redacted>
11  0x12f38f -[Browser capture]
12  0x12f10f __20-[Browser caps]_block_invoke
13  0x3896b0c3 <redacted>
14  0x3896fa47 <redacted>
15  0x3896c72f <redacted>
16  0x3896fe3d <redacted>
17  0x3896cf93 <redacted>
18  0x38970745 <redacted>
19  0x389709c5 <redacted>
20  0x38a9adff _pthread_wqthread
21  0x38a9acc4 start_wqthread

那么,有什么不对,如果UIViewController可见,它为什么能够完美地工作呢?如果它被转移到另一个UIViewController那么会崩溃如此严重?< / p>

1 个答案:

答案 0 :(得分:1)

除少数例外情况外,所有UIKit功能都是明确的主线程。 许多UIGraphics~系列函数都是例外情况。无论如何,其他任何事情都不是例外。我怀疑这些线可能会引起一些问题。

UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];

self.view.frame.size.width

然后,最好检查代码的其他部分是否意外调用UI~系列功能。