12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // NotificationHelper.m
- // zhuxun
- //
- // Created by 张建伟 on 15/1/12.
- // Copyright (c) 2015年 张建伟. All rights reserved.
- //
- #import "NotificationHelper.h"
- NSString* const NotificationFontChange = @"NotificationFontChange";//字体变化
- NSString* const NotificationAddOneSpecialCareContact = @"Notification_AddOneSpecialCareContact";
- NSString* const NotificationRemoveOneSpecialCareContact = @"Notification_RemoveOneSpecialCareContact";
- NSString* const NotificationReceiveLastestMessages = @"Notification_receive_lastestMessages";
- NSString* const NotificationReceiveMessage = @"Notification_receive_message";
- NSString* const NotificationReceiveOfflineMessage = @"Notification_receive_offline_message";
- NSString* const NotificationRefreshRecentView = @"Notification_refresh_recentView";
- NSString* const NotificationSocketAuthSuccess = @"Notification_SocketAuth_Success";
- NSString* const NotificationGroupSocketAuthSuccess = @"Notification_GroupSocketAuth_Success";
- NSString* const NotificationConnected = @"Notification_socket_connected";
- NSString* const GroupNotificationConnected = @"GroupNotification_socket_connected";
- NSString* const NotificationDisconnected = @"Notification_socket_disconnected";
- NSString* const NotificationConnecting = @"Notification_socket_connecting";
- NSString* const NotificationConnectError = @"Notification_socket_connect_error";
- NSString* const NotificationNewVersion = @"Notification_new_version";
- NSString* const NotificationStateChanged = @"Notification_state_changed";
- //通知公告
- NSString *const NotificationReceiveNotice = @"Noticefication_Receive_Notice";
- //头像改变
- NSString *const NotificationAvatarChanged = @"Notification_Avatar_Changed";
- //测试群组
- NSString *const NotificationGroupReceiveMessage = @"Notification_Group_Receive_Message";
- NSString *const NotificationGroupReceiveuUpdateNotice = @"NotificationGroupReceiveuUpdateNotice";
- NSString *const NotificationGroupReceiveSelfBeClickOutNotice = @"NotificationGroupReceiveSelfBeClickOutNotice";
- NSString *const NotificationGroupReceiveGroupDeleteNotice = @"NotificationGroupReceiveGroupDeleteNotice";
- @implementation NotificationHelper
- @end
|