iOS 开源代码集合 http://blog.csdn.net/x32sky/article/details/7526919
howean的专栏 http://www.52rd.com/Blog/howean/
IPHONE应用开发 - xib关联到appdelegate http://blog.csdn.net/jiarusun000/article/details/7270860
应用错误集合: 关于“ARC forbids explicit message send of release”错误(2012-3-7 13:57) 如果你在进行release,retain相关操作的时候发现提示了这样一条错误。这是由于在新建工程的时候使用了ARC功能,即点选了“Use Automatic Reference Counting”选项。解决这个问题很简单:
在老板的xcode中,打开“Build Setting”,找到“Objective-C Automatic Reference Counting”项,将它的值设置成“NO”
在较新的Xcode中如4.2,打开“Build Setting”,找到"CLANG_ENABLE_OBJC_ARC" 将它的值设置成NO
这样ARC功能就关闭了。
|