代理タイトルをセットします
-(void)setAlternateTitle:(NSString *)aString:
解説
代理タイトルをセットします
ボタンタイプによって代理のタイトルを表示しない場合があります。
返り値
( void )
なし
引数
( NSString * )aString
文字列
フレームワーク
ApplicationKit
クラス
NSButtonCell
Instance Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { //bCell1はボタンセル [bCell1 setAlternateTitle:@"new title"]; } @end