メニューをセットします
-(void)setMenu:(NSMenu *)aMenu:
解説
メニューをセットします。
返り値
( void )
なし
引数
( NSMenu * )aMenu
メニュー
フレームワーク
ApplicationKit
クラス
NSResponder
Instance Methods
使用可能
10.0
参照
- menu
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { [sender setMenu:[myOutlet menu]]; NSLog([[myOutlet menu] description]); } @end