AdWhirl 实施错误
我有一个空白的 xcode 文档并尝试实现 AdWhirl,当我构建它时,出现此错误。
Undefined symbols:
"_SCNetworkReachabilityScheduleWithRunLoop", referenced from:
-[AWNetworkReachabilityWrapper scheduleInCurrentRunLoop] in AWNetworkReachabilityWrapper.o
"_SCNetworkReachabilityUnscheduleFromRunLoop", referenced from:
-[AWNetworkReachabilityWrapper unscheduleFromCurrentRunLoop] in AWNetworkReachabilityWrapper.o
"_SCNetworkReachabilityCreateWithName", referenced from:
-[AWNetworkReachabilityWrapper initWithHostname:callbackDelegate:] in AWNetworkReachabilityWrapper.o
"_SCNetworkReachabilitySetCallback", referenced from:
-[AWNetworkReachabilityWrapper initWithHostname:callbackDelegate:] in AWNetworkReachabilityWrapper.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
我需要一些帮助,谢谢
I have a blank xcode document and trie to implement AdWhirl, when I buld it, I have this errors.
Undefined symbols:
"_SCNetworkReachabilityScheduleWithRunLoop", referenced from:
-[AWNetworkReachabilityWrapper scheduleInCurrentRunLoop] in AWNetworkReachabilityWrapper.o
"_SCNetworkReachabilityUnscheduleFromRunLoop", referenced from:
-[AWNetworkReachabilityWrapper unscheduleFromCurrentRunLoop] in AWNetworkReachabilityWrapper.o
"_SCNetworkReachabilityCreateWithName", referenced from:
-[AWNetworkReachabilityWrapper initWithHostname:callbackDelegate:] in AWNetworkReachabilityWrapper.o
"_SCNetworkReachabilitySetCallback", referenced from:
-[AWNetworkReachabilityWrapper initWithHostname:callbackDelegate:] in AWNetworkReachabilityWrapper.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
I need some help, thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您缺少
SystemConfiguration.framework
。添加它,并检查您是否也拥有其他所需的框架。来自 AdWhirl iOS SDK 设置说明:
you are missing the
SystemConfiguration.framework
. Add it, and check that you have the other required frameworks too.From the AdWhirl iOS SDK Setup Instructions:
从现有框架添加“SystemConfiguration.framework”框架。
Add The "SystemConfiguration.framework" framework from existing framework.