0

我使用 iOS SDK 6.1 创建了应用程序。一切正常,但今天我在 iOS Simulator for iPhone 64bit 上检查了我的应用程序。以下屏幕显示了编译时的错误。

例如,

Undefined symbols for architecture x86_64:
"_CFRelease", referenced from: 
-[Reachability dealloc] in Reachability.o

或者

"_CFRunLoopGetCurrent", referenced from:
  -[Reachability startNotifier] in Reachability.o
  -[Reachability stopNotifier] in Reachability.o

我在另一个项目中使用的这个 Reachability 类适用于 iPhone Sim 64b。谁能帮我这个 ?

在此处输入图像描述

4

1 回答 1

0

您的代码将在 arc 中,并且您添加的文件具有 nonarc 代码。删除 dealloc 并检查您是否添加了所有可重复性类所需的框架。

于 2013-10-14T15:23:03.180 回答