KeyboardConst.swift 413 B

123456789101112131415161718192021
  1. //
  2. // KeyboardConst.swift
  3. // AiKeyboard
  4. //
  5. // Created by Destiny on 2025/4/23.
  6. //
  7. import Foundation
  8. import UIKit
  9. struct KeyboardConst {
  10. // MARK: 2.1、屏幕的宽
  11. /// 屏幕的宽
  12. static var kb_kScreenW: CGFloat { return UIScreen.main.bounds.width }
  13. // MARK: 2.2、屏幕的高
  14. /// 屏幕的高
  15. static var kb_kScreenH: CGFloat { return UIScreen.main.bounds.height }
  16. }