レシーバーのデリゲートをセットします
-(void)setDelegate:(id)aDelegate:
解説
レシーバーのデリゲートをセットします。
返り値
( void )
なし
引数
( id )aDelegate
セットするオブジェクト
フレームワーク
ApplicationKit
クラス
NSSound
Instance Methods
使用可能
10.0
参照
- delegate
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSSound *mySound = [NSSound soundNamed : @"Basso"]; [mySound setDelegate:soundD]; [mySound play]; NSLog([[mySound delegate] className]); } @end