向iphone应用程序添加可访问性会产生链接错误

时间:2012-06-05 08:32:02

标签: iphone ios xcode4.3 reachability

我一直在尝试运行Reachability.h时遇到这些错误

enter image description here

2 个答案:

答案 0 :(得分:1)

您的课程引用了Reachability,但您没有将其添加到项目中。您应该将Reachability.m文件添加到项目中。

答案 1 :(得分:1)

转到项目build phases并添加以下

Compile sources下,按“+”图标并添加Reachability.m

Link Binary With Libraries下,按“+”图标并添加SystemConfiguration.framework

Check the screen shot

<强>更新

如果您收到ARC编译错误 您必须在特定文件上禁用ARC 为此,请按照此答案中的步骤操作 How can I disable ARC for a single file in a project?