スレッドを終了します
解説
スレッドを終了します。
終了する前に、デフォルトの通知センターにNSThreadWillExitNotificationをポストします。
返り値
( void )
なし
引数
フレームワーク
Foundation
クラス
NSThread
Class Methods
使用可能
10.0
参照
+ currentThread
+ sleepUntilDate:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { [NSThread detachNewThreadSelector:@selector(threadTask) toTarget:self withObject:nil]; } - (void)threadTask { int i; NSAutoreleasePool *pool = [NSAutoreleasePool new]; for (i=1;i<2000;i++) { NSLog([NSString stringWithFormat:@"%d",i]); } [pool release]; [NSThread exit]; } @end