我的问题是,使用<条码>发送_async(发送_get_main_queue()、^(ave){......});,在这种方法中,视某些条件而定,将一种方法称作YES
。 当用这一方法阅读这种 b时,它有always。 改为: 注
不可思议的是,当我对ool子检查的线上打断点时,所有东西都会被罚款,并按意图!
EDIT: Here is the code where the threads are spawned
dispatch_async(dispatch_get_main_queue(), ^(void) {
[self drawFaceBoxesForFeatures:features forVideoBox:claporientation:curDeviceOrientation image:img];
});
方法本身
- (void)drawFaceBoxesForFeatures:(NSArray *)features forVideoBox:(CGRect)clap orientation: (UIDeviceOrientation)orientation image:(UIImage *)image;
{
if (![self getSendingRequestStatus]) {
NSLog(@"Sending req");
// send async request
dispatch_async(dispatch_get_main_queue(),^ {
sendingRequest = YES;
} );
}
}