CNLiveConstant.swift
471 Bytes
//
// CNLiveConstant.swift
// metaCode
//
// Created by daojian on 2023/6/2.
// 全局常量
import Foundation
///屏幕宽度
let KSreenWidth = UIScreen.main.bounds.width
///屏幕高度
let KSreenHeight = UIScreen.main.bounds.height
///状态栏高度
let KStatusBarHeight = UIApplication.shared.statusBarFrame.height;
///导航栏高度
let KNavigationHeight = (KStatusBarHeight + 44)
///tabbar高度
let KTabBarHeight = (KStatusBarHeight == 44 ? 83 : 49)