在IOS7以上,navigationbar车档界面的解决方法.在viewDidload中.添加以下代码.
class="brush:objc;gutter:true;"> if( ([[[UIDevice currentDevice] systemVersion] doubleValue]>=7.0)) { self.edgesForExtendedLayout = UIRectEdgeNone; self.extendedLayoutIncludesOpaqueBars = NO; self.modalPresentationCapturesStatusBarAppearance = NO; }
问题还有一些,添加代码后,发觉视图整体下移,但视图的宽高不变.谁有更好的方法,可以分享.