我尝试使用 RevMob 的建议代码来显示具有特定展示位置 ID 的横幅广告,但没有成功,尝试了以下代码:
RevMobAds *revmob = [RevMobAds revMobAds];
RevMobBanner *banner = [revmob bannerWithPlacementId:@"ID_FROM_REV_MOB"];
[banner showAd];
甚至尝试添加以下语句
if (IS_iPad) {
banner.frame = CGRectMake(0, 958, 768, 66);
} else if (IS_WIDESCREEN){
banner.frame = CGRectMake(0, 518, 320, 50);
} else {
banner.frame = CGRectMake(0, 430, 320, 50);
}
但没有成功,我能够展示横幅广告的唯一方法是:
[RevMobAds showBannerAdWithFrame:CGRectMake(0, 958, 768, 66) withDelegate:self];
但是添加展示位置 ID 并没有帮助。