iOS5.0以后就开始可以使用ARC来代替之前的MRC。
1.ARC中使用MRC的类。方法如下:
在targets的build phases选项下Compile Sources下选择要不使用arc编译的文件,双击它,输入 -fno-objc-arc
即可
2.MRC中使用ARC的类。方法如下:
在targets的build phases选项下Compile Sources下选择要使用arc编译的文件,双击它,输入 -fobjc-arc 即可
iOS5.0以后就开始可以使用ARC来代替之前的MRC。
1.ARC中使用MRC的类。方法如下:
在targets的build phases选项下Compile Sources下选择要不使用arc编译的文件,双击它,输入 -fno-objc-arc
即可