config.swift 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. //
  2. // config.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 16/6/14.
  6. // Copyright © 2016年 zoneland. All rights reserved.
  7. //
  8. import Foundation
  9. //是否连接到collect服务器 直连版本false 需要在Info.plist配置服务器信息
  10. let O2IsConnect2Collect = true
  11. //一些常量
  12. //bugly
  13. let BUGLY_ID = "0bc87f457b"
  14. //极光
  15. let JPUSH_APP_KEY = "9aca7cc20fe0cc987cd913ca"
  16. let JPUSH_channel = "Publish channel"
  17. //百度
  18. let BAIDU_MAP_KEY = "ONb5sPKBzluXBq3c8ZSQ5ULlWauwZeZ3"
  19. let SCREEN_WIDTH:CGFloat = UIScreen.main.bounds.width;
  20. let SCREEN_HEIGHT:CGFloat = UIScreen.main.bounds.height;
  21. //x, xs : 812 xr, xs max : 896
  22. let iPhoneX = (UIScreen.main.bounds.height == 812 || UIScreen.main.bounds.height == 896) ? true : false
  23. let safeAreaTopHeight:CGFloat = (iPhoneX ? 88 : 64)
  24. //顶部状态栏高度
  25. let IOS11_TOP_STATUSBAR_HEIGHT = iPhoneX ? 44 : 20
  26. //底部安全高度
  27. let IPHONEX_BOTTOM_SAFE_HEIGHT: CGFloat = 34.0
  28. //uiTabBar 高度
  29. let TAB_BAR_HEIGHT: CGFloat = iPhoneX ? (49 + 34) : 49
  30. func RGB(_ r:Float,g:Float,b:Float)->UIColor{
  31. return UIColor(red: CGFloat(r/255.0), green: CGFloat(g/255.0), blue:CGFloat(b/255.0), alpha: 1)
  32. }
  33. //返回字指定名称和大小的字体
  34. func ZFont(_ name:String,_ size:CGFloat) -> UIFont {
  35. return UIFont(name: name, size: size)!
  36. }
  37. //打印字体列表
  38. func printFonts() {
  39. let fontFamilyNames = UIFont.familyNames
  40. for familyName in fontFamilyNames {
  41. print("------------------------------")
  42. print("Font Family Name = [\(familyName)]")
  43. let names = UIFont.fontNames(forFamilyName: familyName)
  44. print("Font Names = [\(names)]")
  45. }
  46. }
  47. //设置页面字体
  48. let setting_item_textFont = UIFont(name: "PingFangTC-Regular", size: 14.0)
  49. let setting_value_textFont = UIFont(name: "PingFangSC-Light", size: 12.0)
  50. let setting_value_textColor = RGB(85, g: 85, b: 85)
  51. let setting_content_textFont = UIFont(name: "PingFangSC-Light", size: 12.0)
  52. let setting_content_textColor = RGB(155, g: 155, b: 155)
  53. //基本颜色
  54. var base_color: UIColor {
  55. get {
  56. return O2ThemeManager.color(for: "Base.base_color")!
  57. }
  58. }
  59. let base_blue_color = UIColor.init(hex: "#008be6")
  60. let base_gray_color = RGB(245.0, g: 245.0, b: 245.0)
  61. let base_gray_background_color = RGB(155.0,g:155.0,b:155.0)
  62. let toolbar_background_color = RGB(247,g:247,b:247)
  63. let toolbar_text_color = RGB(108,g: 108,b: 108)
  64. let toolbar_text_font = UIFont(name: "PingFangSC-Regular", size: 14.0)!
  65. let navbar_tint_color = UIColor.white
  66. var navbar_barTint_color: UIColor {
  67. get {
  68. return O2ThemeManager.color(for: "Base.base_color")!
  69. }
  70. }
  71. let navbar_item_font = toolbar_text_font
  72. //导航栏标题字体
  73. let navbar_text_font = UIFont(name: "PingFangSC-Regular", size: 15.0)!
  74. var PROJECTMODE = 0
  75. //随机字符串
  76. class RandomString {
  77. let characters = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  78. /**
  79. 生成随机字符串,
  80. - parameter length: 生成的字符串的长度
  81. - returns: 随机生成的字符串
  82. */
  83. func getRandomStringOfLength(length: Int) -> String {
  84. var ranStr = ""
  85. for _ in 0..<length {
  86. let index = Int(arc4random_uniform(UInt32(characters.count)))
  87. ranStr.append(characters[characters.index(characters.startIndex, offsetBy: index)])
  88. }
  89. return ranStr
  90. }
  91. private init() {
  92. }
  93. static let sharedInstance = RandomString()
  94. }
  95. //显示进度指示