0

“有时”下面的代码在设备上运行时会导致崩溃(EXC_BAD_ACCESS)。永远不要在模拟器上。

为了重现它,我一直在我的表格视图控制器上覆盖一个模态视图控制器。它通常在模态视图控制器被解除时发生。

任何想法为什么会发生这种情况?

CGContextRef context = UIGraphicsGetCurrentContext();

//set the background of the cell
[self.backgroundColor set];
CGContextFillRect(context, rect);

// get cached image
UIImage *image = [[ImageUtil sharedInstance] getImageByRouteType:route.type];
CGSize imageSize = CGSizeMake(IMAGE_WIDTH, IMAGE_WIDTH);
// DEBUGGER STOPS ON THIS NEXT LINE, image object is fine though
[image drawInRect:CGRectMake(0, 0, imageSize.width, imageSize.height)];

[...]

谢谢

4

1 回答 1

1

如果您在像 NSOperationQueue 这样的多线程情况下使用 drawInRect,请尝试使用锁来避免在多个线程中调用“drawInRect”。我遇到了类似的问题并以这种方式解决了它。

@synchronized([UIImage class]){
    UIGraphicsBeginImageContext(newSize);
    CGRect rect = CGRectMake(0.0, 0.0, newSize.width, newSize.height);
    [self drawInRect: rect];
    newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

} 
于 2011-01-24T05:52:57.850 回答