标签:style blog http io 使用 ar for 文件 sp
将红圈处从No 改成Yes
将这些内存管理的东西全部删掉或注释
作为替代,@autoreleasepool被引入,你可以使用这个效率更高的关键词。
6.1.代码中不能使用retain, release, retain, autorelease
6.2.不重载dealloc(如果是释放对象内存以外的处理,是可以重载该函数的,但是不能调用[super dealloc])
6.3.不能使用NSAllocateObject, NSDeallocateObject
6.4.不能在C结构体中使用对象指针
6.5.id与void *间的如果cast时需要用特定的方法(__bridge关键字)
6.6.不能使用NSAutoReleasePool、而需要@autoreleasepool块
6.7.不能使用“new”开始的属性名称 (如果使用会有下面的编译错误”Property’s synthesized getter follows Cocoa naming convention for returning ‘owned’ objects”)
标签:style blog http io 使用 ar for 文件 sp
原文地址:http://www.cnblogs.com/updateofsimon/p/4011975.html