启用Guard Malloc时,UIImagePNGRepresentation中的EXC_BAD_ACCESS错误

时间:2013-04-03 07:17:40

标签: iphone ios malloc exc-bad-access uiimagepngrepresentation

当启用Guard Malloc时,我在UIImagePNGRepresentation()处出现 EXC_BAD_ACCESS错误,当我禁用时,我在转换图像时没有收到任何错误。我已经通过谷歌解决方案,但我找不到任何有效的解决方案方法。下面是代码。

UIImage  *image, *newImage;
NSData *imageData = [NSData dataWithContentsOfFile:@"somepath"];
            image = [UIImage imageWithData:imageData];
NSData* data = nil;
        data = UIImagePNGRepresentation(image);
        // write to temp directory and return URI
        NSString* docsPath = [NSTemporaryDirectory ()stringByStandardizingPath];
// more code

这是phonegap插件代码的一部分,任何建议都非常有用。 感谢。

1 个答案:

答案 0 :(得分:0)

信息不充分。但我可以告诉你一些代表或财产被解除分配。将其定义为强大的

如果你能给你堆栈跟踪,那将会更有帮助。

祝你好运