"-[Not A Type _cfTypeID]: message sent to deallocated instance"
我的代码是
NSLog(@"app imafe is %@",app.image);[imageVIEw setimage:app.image];
我的日志响应是
2013-07-26 13:39:37.293 imageProcessingApp[1019:11303] app imafe is <UIImage: 0x73c4100>2013-07-26 13:39:39.482 imageProcessingApp[1019:11303] app imafe is <UIImage: 0x90e0420>2013-07-26 13:39:39.483 imageProcessingApp[1019:11303] *** -[Not A Type _cfTypeID]: message sent to deallocated instance 0x90e0b60
尝试将图像设置为我的imageVIEw时出现问题.
请帮忙
解决方法 看起来像你发布app.image或某个地方.可能你有额外的CGImageRelease(app.image.CGImage);
要么
[app.image release]
注意,在ALAsset.fullResolutionImage和fullScreenImage方法之后,您不需要释放图像
总结以上是内存溢出为你收集整理的ios – – [Not A Type _cfTypeID]:发送到解除分配的实例的消息全部内容,希望文章能够帮你解决ios – – [Not A Type _cfTypeID]:发送到解除分配的实例的消息所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)