オブジェクトがnilであるかどうかをテストするロジックがありますが、どうすればnilに設定できますか?iphone ARC - オブジェクトをnilに設定する方法は?
同様:
// in some method
if (true){
[self myObj] = [[myObj alloc]init];
} else{
[self myObject] = nil; //??? How to do this with Automatic Ref. Counting
}
// elsewhere
if([self myObj]){
}