ボタンセルが使用不能時にタイトルと画像が薄くなるかを返します
解説
ボタンセルが使用不能時にタイトルと画像が薄くなるかを返します。
返り値
( BOOL )
YES/NO
引数
フレームワーク
ApplicationKit
クラス
NSButtonCell
Instance Methods
使用可能
10.0
参照
- setButtonType:
- setImageDimsWhenDisabled:
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { //bCell1はボタンセル if ([bCell1 imageDimsWhenDisabled]){ NSLog(@"YES"); }else{ NSLog(@"NO"); } } @end