如何在iPhone中停止NSThread?

时间:2010-06-30 19:52:58

标签: iphone nsthread

  

可能重复:
  How to exit NSThread

我使用NSthread调用了一个方法。我想在按钮的单击事件上停止线程。我怎样才能做到这一点?

[NSThread detachNewThreadSelector:@selector(playVideo) toTarget:self withObject:nil]; 

1 个答案:

答案 0 :(得分:1)

尝试使用documentation进行线程处理,或者更好地使用NSOperation执行playVideo维护对viewController中操作的引用,并发送cancel消息操作。请参阅文档NSOperation documentation