Notification.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. //
  2. // Notification.h
  3. // YidaHealth
  4. //
  5. // Created by 余衡武 on 2018/10/13.
  6. // Copyright © 2018年 余衡武. All rights reserved.
  7. //
  8. #ifndef Notification_h
  9. #define Notification_h
  10. /** webView重载通知 */
  11. #define WebviewReloadNotification @"WebviewReloadNotification"
  12. #pragma mark 用户冻结
  13. #define NotNameAccountFreeze @"NotNameAccountFreeze"
  14. #pragma mark 系统维护
  15. #define NotNameSystemMaintain @"NotNameSystemMaintain"
  16. #pragma mark 用户账号注销
  17. #define NotNameAccountDestroy @"NotNameAccountDestroy"
  18. #pragma mark 异地登陆
  19. #define AccountLoginWithOtherDeviceNotification @"AccountLoginWithOtherDeviceNotification"
  20. /*无有效时间*/
  21. #define PhoneNoVailTimeNotification @"PhoneNoVailTimeNotification"
  22. #pragma mark Token失效
  23. #define TokenIsInvalidNotification @"TokenIsInvalidNotification"
  24. /** WebSocket断开链接通知 退出登录调用logout时发送*/
  25. #define WebSocketDisconnectNotification @"WebSocketDisconnectNotification"
  26. #pragma mark 弹窗关闭
  27. #define NotNameAlertClose @"NotNameAlertClose"
  28. /**修改手机号码通知*/
  29. #define ChangeAccountNotification @"ChangeAccount"
  30. /*完成引导通知*/
  31. #define GuideOkNotification @"GuideOk"
  32. /*主动上锁通知*/
  33. #define lockBypwdNotification @"lockBypwdNot"
  34. #define PlayerViewControlBtnTouchBeganNotification @"PlayerViewControlBtnTouchBeganNotification" // 云手机推流界面 控制按钮开始点击
  35. #define PlayerViewControlBtnTouchEndNotification @"PlayerViewControlBtnTouchEndNotification" /// // 云手机推流界面 控制按钮结束点击
  36. ///
  37. #pragma mark 正在超分设置
  38. #define GetRbdDeviceNotification @"GetRbdDeviceNotification"
  39. /*系统音量变化*/
  40. #define AVSystemController_SystemVolumeDidChangeNotification @"AVSystemController_SystemVolumeDidChangeNotification"
  41. /*网络变化*/
  42. #define NetWorkChangeNotification @"NetWorkChangeNotification"
  43. #pragma mark 断开连接
  44. #define NotNameByCONNECT_DISCONNECT @"CONNECT_DISCONNECT"
  45. #pragma mark 支付回调
  46. #define NotNameAirpayOrWXorderNum @"NotNameAirpayOrWXorderNum"
  47. #pragma mark 安全支付结果通知
  48. #define NotificationNameBySafepayResult @"SafepayResult" //
  49. /*显示声音和画面 */
  50. #define ShowImgAndVoiceNotification @"ShowImgAndVoiceNot"
  51. //显示密码页面 即不可展示图片和声音
  52. #define ShowPwdVCNotification @"ShowPwdVCNot"
  53. #endif /* Notification_h */