config.swift 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. //友盟及蒲公英相应的KEY
  13. let PGY_APP_ID = "84492f465f8f4fb11b8486dc50bf4a38"
  14. //bugly
  15. let BUGLY_ID = "0bc87f457b"
  16. //极光
  17. let JPUSH_APP_KEY = "9aca7cc20fe0cc987cd913ca"
  18. let BAIDU_MAP_KEY = "cL9Y2GLhUxgqmKTIcyxv28Y2S7O2DfYj"
  19. let JPUSH_channel = "Publish channel"
  20. let SCREEN_WIDTH:CGFloat = UIScreen.main.bounds.width;
  21. let SCREEN_HEIGHT:CGFloat = UIScreen.main.bounds.height;
  22. //x, xs : 812 xr, xs max : 896
  23. let iPhoneX = (UIScreen.main.bounds.height == 812 || UIScreen.main.bounds.height == 896) ? true : false
  24. let safeAreaTopHeight:CGFloat = (iPhoneX ? 88 : 64)
  25. //顶部状态栏高度
  26. let IOS11_TOP_STATUSBAR_HEIGHT = iPhoneX ? 44 : 20
  27. //底部安全高度
  28. let IPHONEX_BOTTOM_SAFE_HEIGHT: CGFloat = 34.0
  29. func RGB(_ r:Float,g:Float,b:Float)->UIColor{
  30. return UIColor(red: CGFloat(r/255.0), green: CGFloat(g/255.0), blue:CGFloat(b/255.0), alpha: 1)
  31. }
  32. //返回字指定名称和大小的字体
  33. func ZFont(_ name:String,_ size:CGFloat) -> UIFont {
  34. return UIFont(name: name, size: size)!
  35. }
  36. //打印字体列表
  37. func printFonts() {
  38. let fontFamilyNames = UIFont.familyNames
  39. for familyName in fontFamilyNames {
  40. print("------------------------------")
  41. print("Font Family Name = [\(familyName)]")
  42. let names = UIFont.fontNames(forFamilyName: familyName)
  43. print("Font Names = [\(names)]")
  44. }
  45. }
  46. //设置页面字体
  47. let setting_item_textFont = UIFont(name: "PingFangTC-Regular", size: 14.0)
  48. let setting_value_textFont = UIFont(name: "PingFangSC-Light", size: 12.0)
  49. let setting_value_textColor = RGB(85, g: 85, b: 85)
  50. let setting_content_textFont = UIFont(name: "PingFangSC-Light", size: 12.0)
  51. let setting_content_textColor = RGB(155, g: 155, b: 155)
  52. //基本颜色
  53. var base_color: UIColor {
  54. get {
  55. return O2ThemeManager.color(for: "Base.base_color")!
  56. }
  57. }
  58. let base_blue_color = UIColor.init(hex: "#008be6")
  59. let base_gray_color = RGB(255.0, g: 255.0, b: 255.0)
  60. let base_gray_background_color = RGB(155.0,g:155.0,b:155.0)
  61. let toolbar_background_color = RGB(247,g:247,b:247)
  62. let toolbar_text_color = RGB(108,g: 108,b: 108)
  63. let toolbar_text_font = UIFont(name: "PingFangSC-Regular", size: 14.0)!
  64. let navbar_tint_color = UIColor.white
  65. var navbar_barTint_color: UIColor {
  66. get {
  67. return O2ThemeManager.color(for: "Base.base_color")!
  68. }
  69. }
  70. let navbar_item_font = toolbar_text_font
  71. //导航栏标题字体
  72. let navbar_text_font = UIFont(name: "PingFangSC-Regular", size: 15.0)!
  73. var PROJECTMODE = 0
  74. //随机字符串
  75. class RandomString {
  76. let characters = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  77. /**
  78. 生成随机字符串,
  79. - parameter length: 生成的字符串的长度
  80. - returns: 随机生成的字符串
  81. */
  82. func getRandomStringOfLength(length: Int) -> String {
  83. var ranStr = ""
  84. for _ in 0..<length {
  85. let index = Int(arc4random_uniform(UInt32(characters.count)))
  86. ranStr.append(characters[characters.index(characters.startIndex, offsetBy: index)])
  87. }
  88. return ranStr
  89. }
  90. private init() {
  91. }
  92. static let sharedInstance = RandomString()
  93. }
  94. //显示进度指示