导航栏遮盖的问题 swift

来源:互联网 发布:加拿大经济数据 编辑:程序博客网 时间:2024/05/21 14:04
//如果在ios7以上会出现导航栏遮盖的问题
varstr = NSString(CString: (UIDevice.currentDevice().systemVersion).cStringUsingEncoding(NSUTF8StringEncoding)!, encoding: NSUTF8StringEncoding)
     if str?.doubleValue>= 7.0{
       
        self.edgesForExtendedLayout= UIRectEdge.None
        self.extendedLayoutIncludesOpaqueBars= false
        self.modalPresentationCapturesStatusBarAppearance= false
           
 }
0 0
原创粉丝点击