drawCellInside:
コントロールのセルの内側を描画します
-(void)drawCellInside:(NSCell *)aCell
解説
コントロールのセルの内側を描画します。
返り値
( void )
なし
引数
( NSCell * )aCell
セル
フレームワーク
ApplicationKit
クラス
NSControl
Instance Methods
使用可能
10.0
参照
- selectCell:
- updateCell:
- updateCellInside:
例文
#import "scriptSend.h" @implementation scriptSend - (IBAction)myAction:(id)sender{ [cell selectCell:cell2]; [cell drawCellInside:cell2]; } @end