マルチスレッドで動いているかを返します
解説
マルチスレッドで動いているかを返します。
マルチスレッドならYESを返します。
そうでなければNOを返します。
返り値
( BOOL )
マルチスレッドかYES/NO
引数
フレームワーク
Foundation
クラス
NSThread
Class Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { [NSThread detachNewThreadSelector:@selector(threadTask) toTarget:self withObject:nil]; if ([NSThread isMultiThreaded]){ NSLog(@"YES"); }else{ NSLog(@"NO"); } } - (void)threadTask { int i; NSAutoreleasePool *pool = [NSAutoreleasePool new]; for (i=1;i<2000;i++) { NSLog([NSString stringWithFormat:@"%d",i]); } [pool release]; [NSThread exit]; } @end