1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- //
- // Notification.h
- // YidaHealth
- //
- // Created by 余衡武 on 2018/10/13.
- // Copyright © 2018年 余衡武. All rights reserved.
- //
- #ifndef Notification_h
- #define Notification_h
- /** webView重载通知 */
- #define WebviewReloadNotification @"WebviewReloadNotification"
- #pragma mark 用户冻结
- #define NotNameAccountFreeze @"NotNameAccountFreeze"
- #pragma mark 系统维护
- #define NotNameSystemMaintain @"NotNameSystemMaintain"
- #pragma mark 用户账号注销
- #define NotNameAccountDestroy @"NotNameAccountDestroy"
- #pragma mark 异地登陆
- #define AccountLoginWithOtherDeviceNotification @"AccountLoginWithOtherDeviceNotification"
- /*无有效时间*/
- #define PhoneNoVailTimeNotification @"PhoneNoVailTimeNotification"
- #pragma mark Token失效
- #define TokenIsInvalidNotification @"TokenIsInvalidNotification"
- /** WebSocket断开链接通知 退出登录调用logout时发送*/
- #define WebSocketDisconnectNotification @"WebSocketDisconnectNotification"
- #pragma mark 弹窗关闭
- #define NotNameAlertClose @"NotNameAlertClose"
- /**修改手机号码通知*/
- #define ChangeAccountNotification @"ChangeAccount"
- /*完成引导通知*/
- #define GuideOkNotification @"GuideOk"
- /*主动上锁通知*/
- #define lockBypwdNotification @"lockBypwdNot"
- #define PlayerViewControlBtnTouchBeganNotification @"PlayerViewControlBtnTouchBeganNotification" // 云手机推流界面 控制按钮开始点击
- #define PlayerViewControlBtnTouchEndNotification @"PlayerViewControlBtnTouchEndNotification" /// // 云手机推流界面 控制按钮结束点击
- ///
- #pragma mark 正在超分设置
- #define GetRbdDeviceNotification @"GetRbdDeviceNotification"
- /*系统音量变化*/
- #define AVSystemController_SystemVolumeDidChangeNotification @"AVSystemController_SystemVolumeDidChangeNotification"
- /*网络变化*/
- #define NetWorkChangeNotification @"NetWorkChangeNotification"
- #pragma mark 断开连接
- #define NotNameByCONNECT_DISCONNECT @"CONNECT_DISCONNECT"
- #pragma mark 支付回调
- #define NotNameAirpayOrWXorderNum @"NotNameAirpayOrWXorderNum"
- #pragma mark 安全支付结果通知
- #define NotificationNameBySafepayResult @"SafepayResult" //
- /*显示声音和画面 */
- #define ShowImgAndVoiceNotification @"ShowImgAndVoiceNot"
- //显示密码页面 即不可展示图片和声音
- #define ShowPwdVCNotification @"ShowPwdVCNot"
- #endif /* Notification_h */
|