NotificationHelper.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // NotificationHelper.h
  3. // zhuxun
  4. //
  5. // Created by 张建伟 on 15/1/12.
  6. // Copyright (c) 2015年 张建伟. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. extern NSString* const NotificationFontChange;//字体变化
  10. extern NSString* const NotificationRemoveOneSpecialCareContact;//移除特别关新
  11. extern NSString* const NotificationAddOneSpecialCareContact;//添加特别关注
  12. extern NSString* const NotificationReceiveLastestMessages; //刷新最新消息
  13. extern NSString* const NotificationReceiveMessage; //收到一条消息
  14. extern NSString* const NotificationReceiveOfflineMessage; //收到离线消息
  15. extern NSString* const NotificationRefreshRecentView; //刷新recentMessageView
  16. extern NSString* const NotificationAvatarChanged; //上传头像 头像链接变更
  17. //连接通知
  18. extern NSString* const NotificationConnected; //建立连接
  19. extern NSString* const GroupNotificationConnected;
  20. extern NSString* const NotificationDisconnected; //连接失败
  21. extern NSString* const NotificationConnecting; //正在连接/重连
  22. extern NSString* const NotificationConnectError;
  23. //认证成功
  24. extern NSString* const NotificationSocketAuthSuccess;
  25. extern NSString* const NotificationGroupSocketAuthSuccess;
  26. //设置中有版本更新
  27. extern NSString* const NotificationNewVersion; //有新版本
  28. extern NSString* const NotificationStateChanged; //状态改变
  29. //通知公告
  30. extern NSString* const NotificationReceiveNotice;
  31. //如果群组消息是分开的
  32. extern NSString*const NotificationGroupReceiveMessage; //收到消息
  33. extern NSString*const NotificationGroupReceiveuUpdateNotice;//群组解散
  34. extern NSString*const NotificationGroupReceiveSelfBeClickOutNotice;//被踢
  35. extern NSString*const NotificationGroupReceiveGroupDeleteNotice; //解散
  36. @interface NotificationHelper : NSObject
  37. @end