Undefined symbols for architecture i386, building for iOS?(架构 i386 的未定义符号,为 iOS 构建?)
问题描述
我已经下载了 iProcessing 框架(允许您为 iPhone 构建原生 javascript 应用程序),当我尝试编译时,我得到:
I have downloaded the iProcessing framework (lets you build native javascript apps for iPhone) and when I try to compile, I get:
Undefined symbols for architecture i386:
"_ADBannerContentSizeIdentifier320x50", referenced from:
-[TiUIiOSAdViewProxy SIZE_320x50] in TiUIiOSAdViewProxy.o
"_ADBannerContentSizeIdentifier480x32", referenced from:
-[TiUIiOSAdViewProxy SIZE_480x32] in TiUIiOSAdViewProxy.o
"_OBJC_CLASS_$_ADBannerView", referenced from:
objc-class-ref in TiUIiOSAdView.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status
这三个构建错误会导致应用无法正确编译.有谁知道我该如何解决它们?
These three build errors are preventing the app from compiling properly. Does anyone have an idea how I can fix them?
其他信息:如您所见,我是 Obj-C 的新手,我希望使用这个框架作为跳板,让我进入真正的 iOS 编程.
Other info: I'm new to Obj-C, as you can see, and I'm hoping to use this framework as a springboard to get me into real iOS programming.
推荐答案
确保在 iAd 框架中链接到您的项目.通过转到 Xcode 中的项目设置来执行此操作.然后选择您的目标并在右侧窗格中转到构建阶段".然后在Link Binary with Libraries"部分点击+"按钮添加更多框架.选择 iAd.framework 点击添加"然后重建.
Make sure you link in the iAd framework to your project. Do this by going to your project settings in Xcode. Then select your target and in the right pane go to "Build Phases." Then in the "Link Binary with Libraries" section hit the "+" button to add more frameworks. Select iAd.framework click "Add" and then rebuild.
屏幕看起来像这样:
这篇关于架构 i386 的未定义符号,为 iOS 构建?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:架构 i386 的未定义符号,为 iOS 构建?
基础教程推荐
- Android - 如何在runOnUiThread 中将数据传递给Runnable? 2022-01-01
- EditText 中的 setHintTextColor() 2022-01-01
- 在视图控制器的宽度上水平均匀分布 UIButton 的最简单方法? 2022-01-01
- 在 iOS 7 下 CCMenu 错位 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- UINavigationBar 隐藏按钮文本 2022-01-01
- 更改 UITableView 部分标题的颜色 2022-01-01
- 从 UIWebView 访问元数据 2022-01-01
- UINavigationItem 的持久 rightBarButtonItem 属性 2022-01-01
- Firebase 云消息传递令牌未生成 2022-01-01