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

STConst.h 657B

1234567891011121314151617181920212223242526272829
  1. //
  2. // STConst.h
  3. // STPhotoBrowser
  4. //
  5. // Created by https://github.com/STShenZhaoliang/STPhotoBrowser.git on 16/1/15.
  6. // Copyright © 2016年 ST. All rights reserved.
  7. //
  8. /**
  9. * 1.屏幕尺寸
  10. */
  11. #define ScreenWidth CGRectGetWidth([UIScreen mainScreen].bounds)
  12. #define ScreenHeight CGRectGetHeight([UIScreen mainScreen].bounds)
  13. /**
  14. * 2.返回一个RGBA格式的UIColor对象
  15. */
  16. #define RGBA(r, g, b, a) [UIColor colorWithRed:r/255.0f green:g/255.0f blue:b/255.0f alpha:a]
  17. /**
  18. * 3.返回一个RGB格式的UIColor对象
  19. */
  20. #define RGB(r, g, b) RGBA(r, g, b, 1.0f)
  21. /**
  22. * 4.弱引用
  23. */
  24. #define STWeakSelf __weak typeof(self) weakSelf = self;