我正在尝试推出Flurry非页内广告,但广告总是显示屏幕尺寸的一半,其余部分已被删除..我包括来源和截图如下:
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:YES];
searching = NO;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkNetworkStatus:) name:kReachabilityChangedNotification object:nil];
internetReachable = [Reachability reachabilityForInternetConnection];
[internetReachable startNotifier];
[FlurryAds setAdDelegate:self];
// We will show banner and interstitial integrations here.
if ([PCFInAppPurchases boughtRemoveAds] == NO) {
if (![FlurryAds adReadyForSpace:@"Full Ad"]) [FlurryAds fetchAdForSpace:@"Full Ad" frame:self.view.frame size:FULLSCREEN];
self.tableView.sectionHeaderHeight = 50;
[self.tableView reloadData];
}else{
self.tableView.sectionHeaderHeight = 10;
[self.tableView reloadData];
}
-(void)someMethod {
//when I display it in some method
if ([PCFInAppPurchases boughtRemoveAds] == NO) {
if ([FlurryAds adReadyForSpace:@"Full Ad"]) {
[self.navigationController.navigationBar setHidden:YES];
[self.view setHidden:YES];
[FlurryAds displayAdForSpace:@"Full Ad" onView:self.view];
}
}
答案 0 :(得分:0)
您能否提供有关Flurry SDK版本,设备名称和操作系统的更多详细信息,并将它们发送到support@flurry.com? (完全披露:我在Flurry的支持团队工作)