Config.swift 434 B

12345678910111213141516171819
  1. //
  2. // Config.swift
  3. // BingHaoBang
  4. //
  5. // Created by zhangjidong on 16/3/31.
  6. // Copyright © 2016年 Zjdboy. All rights reserved.
  7. //
  8. import UIKit
  9. //屏幕大小
  10. let SCREEN_BOUNDS = UIScreen.mainScreen().bounds
  11. //屏幕宽高
  12. let SCREEN_WIDTH = UIScreen.mainScreen().bounds.size.width
  13. let SCREEN_HEIGHT = UIScreen.mainScreen().bounds.size.height
  14. //全局颜色
  15. let GLOBAL_COLOR = UIColor(red:0.86, green:0.52, blue:0.43, alpha:1)