如何将我的 Objective-C 应用程序转换为自动引用计数?
我想将我的 iOS 4 应用程序转换为使用 iOS 5 中的自动引用计数。
到目前为止,我认为我必须遍历所有文件并删除任何 retain
、release
,或自动释放
。但为了确定我想先问一下。
- 我必须手动完成吗?如何?
- 有苹果或其他人提供的工具吗?
I would like to convert my iOS 4 application to use the Automatic Reference Counting in iOS 5.
So far I think I have to go through all the files and remove any retain
, release
, or autorelease
. But to be sure I want to ask first.
- Do I have to do it manually? How?
- Is there a tool from Apple or anybody else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你想要这个。
http://developer.apple.com/library/ ios/#releasenotes/ObjectiveC/RN-TransitioningToARC/_index.html
You want this.
http://developer.apple.com/library/ios/#releasenotes/ObjectiveC/RN-TransitioningToARC/_index.html
在 XCode 4.2 中打开您的项目并选择以下菜单选项:
编辑 > 重构 > 转换为 Objective-C ARC...
Open your project in XCode 4.2 and select the following menu option:
Edit > Refactor > Convert to Objective-C ARC...