在 Xcode 4.2 中使用 Reachability.m
我正在尝试在我的应用程序中使用可达性功能。现在,我在 Reachability.m 文件中遇到了几个错误。我认为这是由于新的 Xcode 版本(不允许 [release])造成的。
有人有这种情况的经验吗?
I am trying to use the Reachability function in my application. Now I get several errors in the Reachability.m file. I think it's due to the new Xcode version (does not allow [release]).
Does anyone have experience in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可达性不符合 ARC 标准。您可以针对每个文件禁用 ARC。
选择您的项目->目标->构建阶段 ->编译源->双击Reachability.m ->添加-fno-objc-arc。
问题解决了。
Reachability is not ARC compliant. You can disable ARC on a per file basis.
Select your project -> target -> Build Phases -> Compile Sources -> Double click the Reachability.m -> add -fno-objc-arc.
Problem solved.
这是一个修改后的可达性,旨在符合 ARC 标准。
Here's a modified Reachability that's meant to be ARC-compliant.