第一種方法:
// 設(shè)置CGRectZero從導(dǎo)航欄下開始計(jì)算
if ([self respondsToSelector:@selector(setEdgesForExtendedLayout:)]) {
self.edgesForExtendedLayout = UIRectEdgeNone;
}
第二種方法:
// self.navigationController.navigationBar.translucent = YES;或者NO抛人;
第三種方法:
// self.automaticallyAdjustsScrollViewInsets = NO;
三種方法效果差不多况既,但是也有部分差異哲嘲,筆者推薦第一種蹂空。