delegate
デリゲートを返します
解説
デリゲートを返します。
返り値
( id )
デリゲート
引数
フレームワーク
ApplicationKit
クラス
NSSplitView
Instance Methods
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { //myOutletはsplitView [myOutlet setDelegate:split]; NSLog([NSString stringWithFormat:@"%.1f",[myOutlet dividerThickness]]); NSLog([NSString stringWithFormat:@"%@",[[myOutlet delegate] className]]); } @end