如何在 IOS 4.2 中调整 iAds 横幅的大小
我们可以调整 iAds 横幅框架的大小吗,例如 (200,50)。验证了 AddBanner View 的所有属性。它只有 ADBannerContentSizeIdentifierPortrait 和 ADBannerContentSizeIdentifierLandscape,但没有任何框架调整属性。我的要求就像在 iPad 中一样,我需要显式分割视图而不使用 SplitViewController。他们我的 iAds 的完整尺寸为 (768,66),但要求的是 (460,66)。那么如何实现这个要求呢。请为此提供解决方案。
TIA。
Can we resize the iAds banner frame like (200,50). Verified all properties of AddBanner View. its having only ADBannerContentSizeIdentifierPortrait and ADBannerContentSizeIdentifierLandscape, But not having any frame adjusting property. My requirement like in iPad i need to split the view explicitly with out using SplitViewController. their my iAds taking complete full size of (768,66), But requested is (460,66). So how t achieve this requirement. please provide solution for this.
TIA.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 adView.autoresizingMask = UIViewAutoresizingFlexibleTopMargin |
UIViewAutoresizingFlexibleRightMargin;
另请检查 http://useyourloaf.com /blog/2010/11/27/iad-framework-updates-for-ios-42.html 为您链接其用法。
Use adView.autoresizingMask = UIViewAutoresizingFlexibleTopMargin |
UIViewAutoresizingFlexibleRightMargin;
Also check http://useyourloaf.com/blog/2010/11/27/iad-framework-updates-for-ios-42.html link its use for you.