1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

メインスレッドはキャンセルできない

Posted at

メインスレッドのcancelメソッドは効かないようだ。

NSLog(@"main thread isCancelled 1:%d", [[NSThread mainThread] isCancelled]);
[[NSThread mainThread] cancel];
NSLog(@"main thread isCancelled 2:%d", [[NSThread mainThread] isCancelled]);

の結果

main thread isCancelled 1:0
main thread isCancelled 2:0

サブスレッドにて

NSLog(@"sub thread isCancelled 1:%d", [[NSThread currentThread] isCancelled]);
[[NSThread currentThread] cancel];
NSLog(@"sub thread isCancelled 2:%d", [[NSThread currentThread] isCancelled]);

の結果は、当然こうなる

sub thread isCancelled 1:0
sub thread isCancelled 2:1
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?