ボタンを押したときのハイライトの仕方を返します
解説
ボタンを押したときのハイライトの仕方を返します。
【aType】
● NSChangeGrayCellMask
● NSChangeBackgroundCellMask
返り値
( int )
整数値
引数
フレームワーク
ApplicationKit
クラス
NSButtonCell
Instance Methods
使用可能
10.0
参照
- showsStateBy
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { //bCell1はボタンセル switch ([bCell1 highlightsBy]){ case NSChangeGrayCellMask: [bCell1 setHighlightsBy:NSChangeBackgroundCellMask]; NSLog(@"NSChangeBackgroundCellMask"); break; case NSChangeBackgroundCellMask: [bCell1 setHighlightsBy:NSChangeGrayCellMask]; NSLog(@"NSChangeGrayCellMask"); break; } [bCell1 setHighlightsBy:NSChangeGrayCellMask]; } @end