SizeDefine.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // SizeDefine.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/5/3.
  6. //
  7. #ifndef SizeDefine_h
  8. #define SizeDefine_h
  9. #import "LYTools.h"
  10. //#define Facebook_AppID @"698496945214003"
  11. #define Facebook_AppID @"1253597085440260"
  12. //#define Google_clientID @"288779326635-d24uma05320uitu5dr62mdtltnsf62c8.apps.googleusercontent.com"
  13. #define Google_clientID @"203797423430-b04oap5s9qsgrg8fnsjnu9cntbceqrej.apps.googleusercontent.com"
  14. #define StripePublishableKey @"pk_test_51MFDGRAxgV55iyHtmJFrPuz4i5cl1y3nhTLVT3EmsHlYLIwsj7TnPRPeulAUXSbOW7gccaVLJmFjVz4eu3E17g6z00TLI1YvoG"
  15. #define serviceEmailAdr @"server@asteria.com"
  16. #define mailServiceUrlStr ([NSString stringWithFormat:@"mailto:%@", serviceEmailAdr])
  17. /// 高
  18. #define AScreenHeight [UIScreen mainScreen].bounds.size.height
  19. /// 宽
  20. #define AScreenWidth [UIScreen mainScreen].bounds.size.width
  21. #define kStatusBarH ([LYTools getStatusBarHight])//([UIApplication sharedApplication].statusBarFrame.size.height)
  22. #define kCustomNavBarH (60)
  23. #define kBottomSafeSpace (kStatusBarH > 20 ? 34 : 0)
  24. #define STR(str) ([NSString stringWithFormat:@"%@", str])
  25. #endif /* SizeDefine_h */