0

我正在尝试推出 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];
    }
}

图1

IMG2

4

1 回答 1

0

您能否提供有关 Flurry SDK 版本、设备名称和操作系统的更多详细信息,并将其发送至 support@flurry.com?(全面披露:我在 Flurry 的支持团队工作)

于 2012-12-17T17:45:58.463 回答