0:添加iad.frameWork框架.然后添加头文件.
1.在storybord中设置iad的自动布局,只设置左边与底部即可.....
2.将底部constraints与底部的间距为-66 然后拖线到控制器
3.遵守协议成为代理...如下方法.
- (void)bannerViewDidLoadAd:(ADBannerView *)banner {
self.bottom.constant = 0;
[UIView animateWithDuration:0.5 animations:^{
[self.view layoutIfNeeded];
}];
}
时间: 2024-11-09 12:21:11