(iphone)UIImage imageWithData:应该仅在ios3.1中在主线程中调用?

发布于 2024-11-08 06:51:27 字数 153 浏览 0 评论 0原文

我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_畞蕅 2024-11-15 06:51:27

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文