如何使用 xcode 3.1.3 处理 iAd

发布于 11-27 11:10 字数 369 浏览 1 评论 0原文

目前我正在集成 iAds 并制作该应用程序的精简版。我的问题是以前我使用的 iAds 是 xcode 4.1.3,但目前我使用的是 xcode 3.1.3 iAds 不支持我们所做的,请帮助我。

 NSString *contentSize = UIInterfaceOrientationIsPortrait(self.interfaceOrientation) ? ADBannerContentSizeIdentifier320x50 : ADBannerContentSizeIdentifier480x32;

此行错误:ADBannerContentSizeidentifier320x50'未声明(在此函数中首次使用)

Presently I am Working With Integrate iAds and make a lite version of the app. My Problem is Previously I am working with iAds is xcode 4.1.3 but Presently I was used xcode 3.1.3 iAds are not supporting what we do please help me.

 NSString *contentSize = UIInterfaceOrientationIsPortrait(self.interfaceOrientation) ? ADBannerContentSizeIdentifier320x50 : ADBannerContentSizeIdentifier480x32;

This line error: ADBannerContentSizeidentifier320x50'undeclared(first use in this function)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

煞人兵器2024-12-04 11:10:38

首先,即使在最新版本的 iOS 中,ADBannerContentSizeidentifier320x50 也不再是首选常量。使用 ADBannerContentSizeIdentifierPortrait 改为。

但我认为真正的问题是 Xcode 3.1.3 太旧,无法包含 iAd 框架。它首先包含在 iOS4 中,因此不会出现在更旧的版本中。因此,您的选择是:

  • 使用更新版本的 Xcode(和 iOS)
  • 不要使用 iAds。还有其他广告网络(例如 AdMob)仍然支持旧设备

First, even in the newest versions of iOS, ADBannerContentSizeidentifier320x50 is no longer the preferred constant. Use ADBannerContentSizeIdentifierPortrait instead.

But I think the real issue here is that Xcode 3.1.3 is too old to include the iAd framework. It was first included in iOS4 and so won't be there in anything older. Your choices therefore are:

  • Use a newer version of Xcode (and iOS)
  • Don't use iAds. There are other ad networks such as AdMob that still support older devices
双手揣兜2024-12-04 11:10:38

将您的 SDK 升级到最新版本。

如果您想使用 iAd,您至少需要 iOS 4.0。而且我认为 Xcode 3.1.3 只包含 iPhone OS 3.0 SDK。

是时候升级到雪豹了吗?

Upgrade your SDK to the latest version.

You need at least iOS 4.0 if you want to use iAd. And I think Xcode 3.1.3 only includes the iPhone OS 3.0 SDK.

Time to upgrade to Snow Leopard?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文