NSThread停止/暂停
我在我的应用程序中创建了一个 NSThread 实例。过了某个时刻我想暂停它。有什么办法可以做到这一点。我尝试这样做,
if(![myThread isFinished]) {
myThread = nil;
但
我仍然无法停止该线程。
I have created a NSThread instance in my app. After some point I want to pause it. Is there any way how to do that. I tried doing,
if(![myThread isFinished]) {
myThread = nil;
}
but still i m not able to stop that thread.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
或者
您必须使用 NSOperation 队列进行相同的
操作以下链接可能对您有用
http://developer.apple.com/library/ios/#samplecode/ThreadedCoreData/Listings/Classes_ParseOperation_h.html#//apple_ref/doc/uid/DTS40010723-Classes_ParseOperation_h-DontLinkElementID_5
OR
YOu have to use NSOperation queue for same
Following link may be usefull to you
http://developer.apple.com/library/ios/#samplecode/ThreadedCoreData/Listings/Classes_ParseOperation_h.html#//apple_ref/doc/uid/DTS40010723-Classes_ParseOperation_h-DontLinkElementID_5