《省钱达人》与《猎豆优选》UI相同版。域名tbk

GlobalDefines.h 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // GlobalDefines.h
  3. // GSD_WeiXin(wechat)
  4. //
  5. // Created by aier on 16/2/12.
  6. // Copyright © 2016年 GSD. All rights reserved.
  7. //
  8. /*
  9. *********************************************************************************
  10. *
  11. * GSD_WeiXin
  12. *
  13. * QQ交流群: 362419100(2群) 459274049(1群已满)
  14. * Email : gsdios@126.com
  15. * GitHub: https://github.com/gsdios/GSD_WeiXin
  16. * 新浪微博:GSD_iOS
  17. *
  18. * 此“高仿微信”用到了很高效方便的自动布局库SDAutoLayout(一行代码搞定自动布局)
  19. * SDAutoLayout地址:https://github.com/gsdios/SDAutoLayout
  20. * SDAutoLayout视频教程:http://www.letv.com/ptv/vplay/24038772.html
  21. * SDAutoLayout用法示例:https://github.com/gsdios/SDAutoLayout/blob/master/README.md
  22. *
  23. *********************************************************************************
  24. */
  25. #ifndef GlobalDefines_h
  26. #define GlobalDefines_h
  27. #define SDColor(r, g, b, a) [UIColor colorWithRed:(r / 255.0) green:(g / 255.0) blue:(b / 255.0) alpha:a]
  28. #define Global_tintColor [UIColor colorWithRed:0 green:(190 / 255.0) blue:(12 / 255.0) alpha:1]
  29. #define Global_mainBackgroundColor SDColor(248, 248, 248, 1)
  30. #define TimeLineCellHighlightedColor [UIColor colorWithRed:92/255.0 green:140/255.0 blue:193/255.0 alpha:1.0]
  31. #define DAY @"day"
  32. #define NIGHT @"night"
  33. #endif