ios 3 上 [NSOperationQueue mainQueue] 的替代方案
这些操作在ios3上相当于什么
[NSOperationQueue mainQueue];
[NSOperationQueue currentQueue];
What is the equivalent of these operations on ios3
[NSOperationQueue mainQueue];
[NSOperationQueue currentQueue];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上没有与 +currentQueue 等效的东西。对于 +mainQueue,您将使用
包含需要在主线程上完成的工作的方法进行调用。
There really wasn't an equivalent for +currentQueue. For +mainQueue you'd call
with a method that contained the work that needed to be done on the main thread.
除了自己动手之外,没有其他选择。
像这样的东西可能有效:(未经测试)
There is no other alternative other than rolling your own.
Something like this might work: (untested)