这几行代码会导致EXC访问错误。显然,self.thumbnailimage不是nil(我检查它)。那么它会是什么呢?
CGContextRef context = UIGraphicsGetCurrentContext();
if(self.thumbnailImage)
{
CGContextDrawImage(context,CGRectMake(14, 5, 58, 58), self.thumbnailImage);
}发布于 2012-05-01 06:28:32
好吧,问题解决了。我最终使用了uiimage方法drawInRect。
https://stackoverflow.com/questions/10380965
复制相似问题