English 中文(简体)
I386号建筑构造未经界定的标志
原标题:Undefined symbols for architecture i386, building for iOS?

我下载了“iProcesing”框架(请你为Pi”建立本地的java书写器,在我试图汇编时,我得到:

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

这三处建筑错误妨碍了对手进行适当汇编。 是否有任何人想我如何确定这些概念?

其他信息:正如你所看到的那样,我对奥比-C来说是新鲜的,我希望利用这一框架作为跳板,使我进入真正的里海方案。

最佳回答

确保在iAd框架内与你的项目挂钩。 是否通过在Xcode中进入你的项目环境。 然后选择你的目标,用正确的价格选择“独立阶段”。 随后,在“与图书馆的链接”栏中,“+”纽扣了“+”纽克,增加了更多的框架。 选择iAd.framework点击“Add”然后重建。

The screen looks something like this:

“entergraph

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签