setWarningValue:
レシーバーの警告値をセットします
-(void)setWarningValue:(double)warningValue:
解説
レシーバーの警告値をセットします。
返り値
( void )
なし
引数
( double )warningValue
フレームワーク
ApplicationKit
クラス
NSLevelIndicator
Instance Methods
使用可能
10.4
参照
-warningValue
例文
- (IBAction)myOutlet:sender { NSLevelIndicatorCell *iCell = [tColumn dataCellForRow:0]; //アップデート用 [tColumn setWidth:[tColumn width]+1];[tColumn setWidth:[tColumn width]-1]; [iCell setCriticalValue:3.0]; [iCell setWarningValue:4]; NSLog(@"criticalValue - %f",[iCell criticalValue]); }