Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道sizeFromBannerContentSizeIdentifier在 iOS 6 中不推荐使用的新方法来代替 ?
sizeFromBannerContentSizeIdentifier
没有其他方法。您可以使用frame属性,它还为您提供广告视图大小。
CGSize adSize = adView.frame.size;
您可以使用该bounds属性 -
bounds
CGSize myBannerSize = myBanner.bounds.size;
Apple 没有替换sizeFromBannerContextSizeIdentifier- 您需要使用bounds.
sizeFromBannerContextSizeIdentifier