MMPopupDefine.h 448 B

1234567891011121314151617
  1. //
  2. // MMPopupDefine.h
  3. // MMPopupView
  4. //
  5. // Created by Ralph Li on 9/6/15.
  6. // Copyright © 2015 LJC. All rights reserved.
  7. //
  8. #ifndef MMPopupDefine_h
  9. #define MMPopupDefine_h
  10. #define MMWeakify(o) __weak typeof(self) mmwo = o;
  11. #define MMStrongify(o) __strong typeof(self) o = mmwo;
  12. #define MMHexColor(color) [UIColor mm_colorWithHex:color]
  13. #define MM_SPLIT_WIDTH (1/[UIScreen mainScreen].scale)
  14. #endif /* MMPopupDefine_h */