图片缩放UIGraphicsGetImageFromCurrentImageContext不是线程安全的
2012-10-12 18:17 三戒1993 阅读(132) 评论(0) 编辑 收藏 举报常用的图片缩放方式:
UIGraphicsBeginImageContext
UIGraphicsGetImageFromCurrentImageContext
UIGraphicsEndImageContext
UIGraphicsGetImageFromCurrentImageContext
UIGraphicsEndImageContext
开启一个线程,在线程中进行图片的缩放.
操作太频繁后,程序crash.
找了半天原因,图片缩放操作非线程安全.
http://286725277.blog.163.com/blog/static/12672858620113823553731/
http://stackoverflow.com/questions/1434714/another-iphone-cgbitmapcontextcreateimage-leak
操作太频繁后,程序crash.
找了半天原因,图片缩放操作非线程安全.
http://286725277.blog.163.com/blog/static/12672858620113823553731/
http://stackoverflow.com/questions/1434714/another-iphone-cgbitmapcontextcreateimage-leak
修改了结构,控制UIImageView大小,setImage,自动就进行了缩放...