2012-12-14 53 views
0

我想推出Flurry插頁式廣告,但廣告總是顯示一半的屏幕尺寸,其餘部分被剪下來..我包括以下源代碼和屏幕截圖: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]; 
    } 
} 

Img1

IMG2

回答

0

你能提供亂舞SDK版本,設備名稱和操作系統的詳細信息,並跨越它們發送到[email protected]? (完全披露:我在Flurry的支持團隊工作)