Dealloc weak nil
Posted wxm5558
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dealloc weak nil相关的知识,希望对你有一定的参考价值。
#import <UIKit/UIKit.h> #import "AppDelegate.h" @interface B : NSObject @end @implementation B - (void)dealloc { NSLog(@"in dealloc"); } @end @interface A : NSObject @property(nonatomic, weak)id referObj; - (void)foo; @end @implementation A - (void)foo { B*b = [B new]; self.referObj = b; NSLog(@"%@",b); } @end int main(int argc, char * argv[]) { @autoreleasepool { A*a = [A new]; [a foo]; return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); } }
以上是关于Dealloc weak nil的主要内容,如果未能解决你的问题,请参考以下文章