NotificationHelper.m 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // NotificationHelper.m
  3. // zhuxun
  4. //
  5. // Created by 张建伟 on 15/1/12.
  6. // Copyright (c) 2015年 张建伟. All rights reserved.
  7. //
  8. #import "NotificationHelper.h"
  9. NSString* const NotificationFontChange = @"NotificationFontChange";//字体变化
  10. NSString* const NotificationAddOneSpecialCareContact = @"Notification_AddOneSpecialCareContact";
  11. NSString* const NotificationRemoveOneSpecialCareContact = @"Notification_RemoveOneSpecialCareContact";
  12. NSString* const NotificationReceiveLastestMessages = @"Notification_receive_lastestMessages";
  13. NSString* const NotificationReceiveMessage = @"Notification_receive_message";
  14. NSString* const NotificationReceiveOfflineMessage = @"Notification_receive_offline_message";
  15. NSString* const NotificationRefreshRecentView = @"Notification_refresh_recentView";
  16. NSString* const NotificationSocketAuthSuccess = @"Notification_SocketAuth_Success";
  17. NSString* const NotificationGroupSocketAuthSuccess = @"Notification_GroupSocketAuth_Success";
  18. NSString* const NotificationConnected = @"Notification_socket_connected";
  19. NSString* const GroupNotificationConnected = @"GroupNotification_socket_connected";
  20. NSString* const NotificationDisconnected = @"Notification_socket_disconnected";
  21. NSString* const NotificationConnecting = @"Notification_socket_connecting";
  22. NSString* const NotificationConnectError = @"Notification_socket_connect_error";
  23. NSString* const NotificationNewVersion = @"Notification_new_version";
  24. NSString* const NotificationStateChanged = @"Notification_state_changed";
  25. //通知公告
  26. NSString *const NotificationReceiveNotice = @"Noticefication_Receive_Notice";
  27. //头像改变
  28. NSString *const NotificationAvatarChanged = @"Notification_Avatar_Changed";
  29. //测试群组
  30. NSString *const NotificationGroupReceiveMessage = @"Notification_Group_Receive_Message";
  31. NSString *const NotificationGroupReceiveuUpdateNotice = @"NotificationGroupReceiveuUpdateNotice";
  32. NSString *const NotificationGroupReceiveSelfBeClickOutNotice = @"NotificationGroupReceiveSelfBeClickOutNotice";
  33. NSString *const NotificationGroupReceiveGroupDeleteNotice = @"NotificationGroupReceiveGroupDeleteNotice";
  34. @implementation NotificationHelper
  35. @end