setMinValue:
ステッパーセルの最小値をセットします
-(void)setMinValue:(double)minValue:
解説
ステッパーセルの最小値をセットします。
返り値
( void )
なし
引数
( double )minValue
最小値
フレームワーク
ApplicationKit
クラス
NSStepperCell
Instance Methods
使用可能
10.0
参照
- minValue
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { //myOutletはstepper [myOutlet setMinValue:5]; NSLog([NSString stringWithFormat:@"%.1f",[myOutlet minValue]]); } @end