floatの数値オブジェクトを作って返します
+(NSNumber *)numberWithFloat:(float)value:
解説
floatの数値オブジェクト(NSNumber)を作って返します。
floatは4バイトの浮動小数点値 6桁が有効。
返り値
( NSNumber * )
NSNumber
引数
( float )value
float値
フレームワーク
Foundation
クラス
NSNumber
Class Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSNumber *num = [NSNumber numberWithDouble:1234.567]; NSLog(@"%%f = %f",[num floatValue]); NSLog(@"%%e = %e",[num floatValue]); NSLog(@"%%g = %g",[num floatValue]); NSLog(@"-------------------------------"); NSNumber *num2 = [NSNumber numberWithDouble:1234.561]; NSLog(@"%%f = %f",[num2 floatValue]); NSLog(@"%%e = %e",[num2 floatValue]); NSLog(@"%%g = %g",[num2 floatValue]); NSLog(@"%d byte(s)",sizeof[num floatValue]); //テキストフィールドにセット [info setFloatValue:[num floatValue]]; } @end