调整表格视图

时间:2011-04-18 09:53:10

标签: iphone

我正在开发一个项目,我在其中使用表视图单元格和iADBanner。当我滚动表格并想要查看表格的最后一个单元格后面的iAdbanner.How我可以调整表格以便我可以看到表格的最后一个单元格和iADbanner。

3 个答案:

答案 0 :(得分:3)

您必须设置表格的框架并将其高度设置为当前高度减去iAd横幅高度。

[tblView setFrame:CGRectMake(0.0f, 0.0f, 320.0f, 410.0f)];

我假设您的iAd横幅高度为50,而您的表格视图来自(0,0)

答案 1 :(得分:1)

这很简单,只需要为表格设置框架。

答案 2 :(得分:0)

由于广告不会一直显示,因此您的表格视图和iAd视图应位于容器视图中。因此,只要有广告显示:

 - (void)bannerViewDidLoadAd:(ADBannerView *)banner {
   //Set the iAdview frame according to Orientation
   if(Want to show Ad)
    //Add the iAdView to the bottom of container View, pushing the table View up
   else
     //Remove iAd from Container View.
 }