如何在标签栏上方粘贴iAddBanner并将其保留在那里

时间:2012-05-17 01:38:19

标签: iphone position storyboard tabbar

我正在尝试使用iAddBanner,并将其放在我的标签栏顶部。 这给了我一些问题,特别是在tableviews ....

是否有人成功完成了这项工作?

干杯, 托米

1 个答案:

答案 0 :(得分:0)

我设法自己解决了这个问题。

我最后添加了adbanner作为我的tabbarcontroller的子视图。

- (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;
}