5

有谁知道sizeFromBannerContentSizeIdentifier在 iOS 6 中不推荐使用的新方法来代替 ?

4

2 回答 2

1

没有其他方法。您可以使用frame属性,它还为您提供广告视图大小。

CGSize adSize = adView.frame.size;
于 2013-04-29T19:24:32.663 回答
1

您可以使用该bounds属性 -

CGSize myBannerSize = myBanner.bounds.size;

Apple 没有替换sizeFromBannerContextSizeIdentifier- 您需要使用bounds.

于 2013-04-29T20:20:42.150 回答