| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // NotificationHelper.h
- // zhuxun
- //
- // Created by 张建伟 on 15/1/12.
- // Copyright (c) 2015年 张建伟. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- extern NSString* const NotificationFontChange;//字体变化
- extern NSString* const NotificationRemoveOneSpecialCareContact;//移除特别关新
- extern NSString* const NotificationAddOneSpecialCareContact;//添加特别关注
- extern NSString* const NotificationReceiveLastestMessages; //刷新最新消息
- extern NSString* const NotificationReceiveMessage; //收到一条消息
- extern NSString* const NotificationReceiveOfflineMessage; //收到离线消息
- extern NSString* const NotificationRefreshRecentView; //刷新recentMessageView
- extern NSString* const NotificationAvatarChanged; //上传头像 头像链接变更
- //连接通知
- extern NSString* const NotificationConnected; //建立连接
- extern NSString* const GroupNotificationConnected;
- extern NSString* const NotificationDisconnected; //连接失败
- extern NSString* const NotificationConnecting; //正在连接/重连
- extern NSString* const NotificationConnectError;
- //认证成功
- extern NSString* const NotificationSocketAuthSuccess;
- extern NSString* const NotificationGroupSocketAuthSuccess;
- //设置中有版本更新
- extern NSString* const NotificationNewVersion; //有新版本
- extern NSString* const NotificationStateChanged; //状态改变
- //通知公告
- extern NSString* const NotificationReceiveNotice;
- //如果群组消息是分开的
- extern NSString*const NotificationGroupReceiveMessage; //收到消息
- extern NSString*const NotificationGroupReceiveuUpdateNotice;//群组解散
- extern NSString*const NotificationGroupReceiveSelfBeClickOutNotice;//被踢
- extern NSString*const NotificationGroupReceiveGroupDeleteNotice; //解散
- @interface NotificationHelper : NSObject
- @end
|