オブジェクトが保持されなければならないかどうを返します
BOOL NSShouldRetainWithZone ( id <NSObject> anObject , NSZone * requestedZone );
解説
オブジェクトが保持されなければならないかどうを返します。
返り値
引数
( id <NSObject> )anObject
( NSZone * )requestedZone
フレームワーク
Foundation
クラス
NSShouldRetainWithZone
Function
使用可能
10.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { (NSShouldRetainWithZone(self,[self zone]))? NSLog(@"YES"): NSLog(@"NO"); } @end