IOS7、IOS6 UINavigationController遮挡

来源:互联网 发布:淘宝商城运动套装 编辑:程序博客网 时间:2024/05/04 16:31

在UIVIewController中加入:
        if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
            self.edgesForExtendedLayout = UIRectEdgeNone;
            
            self.extendedLayoutIncludesOpaqueBars = NO;
            self.modalPresentationCapturesStatusBarAppearance = NO;
        } 

原创粉丝点击