// // RQConstant.m // RQCommon // // Created by 张嵘 on 2018/11/13. // Copyright © 2018 张嵘. All rights reserved. // #import "RQConstant.h" #import #pragma mark - 应用相关的 /// 切换根控制器的通知 新特性 NSString * const RQSwitchRootViewControllerNotification = @"RQSwitchRootViewControllerNotification"; /// 切换根控制器的通知 UserInfo key NSString * const RQSwitchRootViewControllerUserInfoKey = @"RQSwitchRootViewControllerUserInfoKey"; /// 插件Switch按钮值改变 NSString * const RQPlugSwitchValueDidChangedNotification = @"RQPlugSwitchValueDidChangedNotification"; /// 切换首页的通知 NSString * const RQSwitchHomePageViewControllerNotification = @"RQSwitchHomePageViewControllerNotification"; /// 切换首页的通知 UserInfo key NSString * const RQSwitchHomePageViewControllerUserInfoKey = @"RQSwitchHomePageViewControllerUserInfoKey"; /// 切换个人页的通知 NSString * const RQSwitchProfilePageViewControllerNotification = @"RQSwitchProfilePageViewControllerNotification"; /// 切换个人页的通知 UserInfo key NSString * const RQSwitchProfilePageViewControllerUserInfoKey = @"RQSwitchProfilePageViewControllerUserInfoKey"; /// Loding通用标题 NSString * const RQLodingCommonTitleString = @"请稍后..."; /// 全局分割线高度 .5 CGFloat const RQGlobalBottomLineHeight = 0.5f; /// 个性签名的最大字数为30 NSUInteger const RQFeatureSignatureMaxWords = 30; /// 用户昵称的最大字数为20 NSUInteger const RQNicknameMaxWords = 20; /// 隐私协议地址 NSString * const RQPrivateGuardUrl = @"https://ys.zzxcx.net/xy_jsjp.html"; /// 国家区号 NSString * const RQMobileLoginZoneCodeKey = @"RQMobileLoginZoneCodeKey"; /// 手机号码 NSString * const RQMobileLoginPhoneKey = @"RQMobileLoginPhoneKey"; /// 密码 NSString * const RQMobileLoginPasswordKey = @"RQMobileLoginPasswordKey"; /// 验证码 NSString * const RQCaptchaKey = @"RQCaptchaKey"; /// 验证码时间 NSUInteger const RQCaptchaFetchMaxWords = 60; /// 温州人脸比对次数 NSUInteger const RQWenZhouFaceNum = 3; /// 莆田人脸比对次数 NSUInteger const RQPuTianFaceNum = 1;