ミックスドモードかを返します
解説
NSCellの状態がMixedかどうか返します。
YESならMixed,on,off
NOならon,offです
返り値
( BOOL )
Mixed状態かYES/NO
引数
フレームワーク
ApplicationKit
クラス
NSCell
Instance Methods
使用可能
10.0
参照
- nextState
- setAllowsMixedState:
- setNextState
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { if ([bCell1 allowsMixedState]){ NSLog(@"Opaque"); }else{ NSLog(@"NO"); } } @end