2012-05-17 3 views

답변

0

나는 내 자신의 문제를 해결하기 위해 관리.

결국 내 tabbarcontroller의 하위보기로 adbanner를 추가했습니다.

- (void)bannerViewDidLoadAd:(ADBannerView *)banner 
{ 
    [iAdBanner setFrame:CGRectMake(0, 381, 200, 32)]; 
    [self.tabBarController.view addSubview:iAdBanner]; 
    //The inset is for the current tableview to get all the content on top of the adbanner 
    UIEdgeInsets inset = UIEdgeInsetsMake(0, 0, 50, 0); 
    self.tableView.contentInset = inset; 
    adVisible = true; 
} 
관련 문제