-2
 ld: warning: ignoring file /Users/macmini/Desktop/Test/iAd.framework/iAd, missing required architecture i386 in file /Users/macmini/Desktop/Test/iAd.framework/iAd (2 slices)

Undefined symbols for architecture i386:

  "_ADBannerContentSizeIdentifier320x50", referenced from:
      -[ViewController viewDidLoad] in ViewController.o

  "_OBJC_CLASS_$_ADBannerView", referenced from:
      objc-class-ref in ViewController.o

ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

在此处输入图像描述

4

2 回答 2

0

虽然细节很少,但你有没有在你的应用程序中添加 iAd.Framework?并且不要忘记在你的 VC 中导入这两个。

#import "iAd/ADBannerView.h"
#import <iAd/iAd.h>
于 2013-09-05T10:21:29.620 回答
0

我认为您的问题是您没有使用内置的 iAd 框架。如果我正确解释了缺少架构警告的路径,则您的项目使用的 iAd 框架位于您的项目目录中。

框架不应该在那里。按照此答案的说明删除此框架并添加系统框架

于 2013-09-05T11:24:02.210 回答