可能重复:
How to exit NSThread
我使用NSthread调用了一个方法。我想在按钮的单击事件上停止线程。我怎样才能做到这一点?
[NSThread detachNewThreadSelector:@selector(playVideo) toTarget:self withObject:nil];
答案 0 :(得分:1)
尝试使用documentation进行线程处理,或者更好地使用NSOperation
执行playVideo
维护对viewController中操作的引用,并发送cancel
消息操作。请参阅文档NSOperation documentation