CNLiveConstant.swift 563 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)

//MARK: - 常用背景色
///控制器背景色
let KVCBackgroupColor = UIColor("#F9F9F9")