JMSGNotificationEvent Class Reference

Inherits from NSObject
Declared in JMSGNotificationEvent.h

Overview

事件

事件分类

事件主要区分两类,通知事件、消息事件,两种不同类型的事件是通过不同的监听方法来监听的。

通知事件

通知事件就是除群事件之外的,如:当前登录登录状态变更、好友相关、消息撤回、消息透传、入群申请、管理员审批等事件. 上层通过对应类里的相对应的代理方法接收事件,如:JMSGEventDelegate 、JMSGGroupDelegate 等类.

消息事件

消息事件就是群事件,如:群加人、踢人、修改群信息、群成员禁言、管理员变更等(即:会展示在消息列表的事件),SDK 依旧作为一个特殊的消息类型下发,上层通过 [JMSGMessageDelegate onReceiveMessage:] 接收消息事件.

  eventType

事件类型

@property (nonatomic, assign, readonly) JMSGEventNotificationType eventType

Discussion

参考事件类型的定义 JMSGEventNotificationType

Declared In

JMSGNotificationEvent.h

  eventDescription

事件的描述信息

@property (nonatomic, strong, readonly) NSString *eventDescription

Discussion

下发事件的文字描述,可能为空

Declared In

JMSGNotificationEvent.h