threadPriority
スレッドの優先度を返します
解説
スレッドの優先度を返します。0.0〜1.0まで
返り値
( double )
なし
引数
フレームワーク
Foundation
クラス
NSThread
Class Methods
使用可能
10.2
参照
+ currentThread
+ sleepUntilDate:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { [NSThread detachNewThreadSelector:@selector(threadTask) toTarget:self withObject:nil]; NSLog([NSString stringWithFormat:@"%f",[NSThread threadPriority]]); } - (void)threadTask { int i; NSAutoreleasePool *pool = [NSAutoreleasePool new]; for (i=1;i<100;i++) { NSLog([NSString stringWithFormat:@"%d",i]); } [pool release]; [NSThread exit]; } @end