RQConstant.m 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // RQConstant.m
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/13.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RQConstant.h"
  9. #import <UIKit/UIKit.h>
  10. #pragma mark - 应用相关的
  11. /// 切换根控制器的通知 新特性
  12. NSString * const RQSwitchRootViewControllerNotification = @"RQSwitchRootViewControllerNotification";
  13. /// 切换根控制器的通知 UserInfo key
  14. NSString * const RQSwitchRootViewControllerUserInfoKey = @"RQSwitchRootViewControllerUserInfoKey";
  15. /// 插件Switch按钮值改变
  16. NSString * const RQPlugSwitchValueDidChangedNotification = @"RQPlugSwitchValueDidChangedNotification";
  17. /// 切换首页的通知
  18. NSString * const RQSwitchHomePageViewControllerNotification = @"RQSwitchHomePageViewControllerNotification";
  19. /// 切换首页的通知 UserInfo key
  20. NSString * const RQSwitchHomePageViewControllerUserInfoKey = @"RQSwitchHomePageViewControllerUserInfoKey";
  21. /// 切换个人页的通知
  22. NSString * const RQSwitchProfilePageViewControllerNotification = @"RQSwitchProfilePageViewControllerNotification";
  23. /// 切换个人页的通知 UserInfo key
  24. NSString * const RQSwitchProfilePageViewControllerUserInfoKey = @"RQSwitchProfilePageViewControllerUserInfoKey";
  25. /// Loding通用标题
  26. NSString * const RQLodingCommonTitleString = @"请稍后...";
  27. /// 全局分割线高度 .5
  28. CGFloat const RQGlobalBottomLineHeight = 0.5f;
  29. /// 个性签名的最大字数为30
  30. NSUInteger const RQFeatureSignatureMaxWords = 30;
  31. /// 用户昵称的最大字数为20
  32. NSUInteger const RQNicknameMaxWords = 20;
  33. /// 隐私协议地址
  34. NSString * const RQPrivateGuardUrl = @"https://ys.zzxcx.net/xy_jsjp.html";
  35. /// 国家区号
  36. NSString * const RQMobileLoginZoneCodeKey = @"RQMobileLoginZoneCodeKey";
  37. /// 手机号码
  38. NSString * const RQMobileLoginPhoneKey = @"RQMobileLoginPhoneKey";
  39. /// 密码
  40. NSString * const RQMobileLoginPasswordKey = @"RQMobileLoginPasswordKey";
  41. /// 验证码
  42. NSString * const RQCaptchaKey = @"RQCaptchaKey";
  43. /// 验证码时间
  44. NSUInteger const RQCaptchaFetchMaxWords = 60;
  45. /// 温州人脸比对次数
  46. NSUInteger const RQWenZhouFaceNum = 3;
  47. /// 莆田人脸比对次数
  48. NSUInteger const RQPuTianFaceNum = 1;