だから、私はクラスを持っています:
@interface Controller : NSObject
{
UILabel* fileDescription;
}
@property(strong, nonatomic) UILabel* fileDescription;
プロパティfileDescriptionがnilに等しい場合、メソッドdeallocを使用する必要がありますか?
例えば:
-(void)dealloc
{
fileDescription = nil;
}
そうでない場合、fileDescription によって使用されるメモリを誰が破棄するのでしょうか?