我设置了一个 phonegap 2.0.1 项目并注意到它正在使用 ARC。但是我想知道为您自动创建的继承 CDVViewController 的 MainViewController.m 是否也在 ARC 下运行。
我向 MainViewController 添加了一些属性,例如:
@property (nonatomic, readwrite, copy) NSString* errorJS;
我想知道如果我需要使用 dealloc 来释放它,或者天气这已经被处理了,因为 CDVViewController 在 ARC 下运行:S
谁能告诉我是否还需要在 MainViewController 中释放我的属性?