(iphone)UIImage imageWithData:应该仅在ios3.1中在主线程中调用?
我从 ios4.x 中读到 UIImage 是线程安全的。
想知道 imageWithData: 是否只能在 ios3.x 中从主线程调用?
-- 编辑
分配 UIImage 也应该只在 ios3.x 的主线程中完成吗?
谢谢
I read UIImage is thread safe from ios4.x.
Wonder if imageWithData: should be called from main thread only in ios3.x?
-- edit
Should allocing UIImage also be done in main thread only in ios3.x?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIImage 是线程安全的,但 UIImageView 不是(在 iOS4 中)。如果您需要支持iOS3.x,那么您还需要在主线程中执行所有UIImage操作。
编辑:添加链接
此处已回答问题
UIImage is thread safe but UIImageView is not (in iOS4). If you need to support iOS3.x then you need to do all UIImage operations in main thread as well.
Edit: Adding a link to the
already answered question here