initWithUnsignedLong:
符号無しLongの数値オブジェクトを初期化して返します
-(id)initWithUnsignedLong:(unsigned long)value:
解説
符号無しLongの数値オブジェクト(NSNumber)を初期化して返します。
返り値
( id )
NSNumber
引数
( unsigned long )value
unsigned long値
フレームワーク
Foundation
クラス
NSNumber
Instance Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSNumber *num = [[NSNumber alloc] initWithUnsignedLong:120000]; [info setDoubleValue:[num doubleValue]]; } @end