RQConstant.m 2.2 KB

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