NIMSDK-iOS
载入中...
搜索中...
未找到
NIMNotificationObject.h
浏览该文件的文档.
1//
2// NIMNotificationObject.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright (c) 2015 Netease. All rights reserved.
7//
8
15
16NS_ASSUME_NONNULL_BEGIN
17
18/**
19 * 通知对象
20 */
22/**
23 * 通知内容
24 */
25@property (nonatomic,strong,readonly) NIMNotificationContent *content;
26
27/**
28 * 通知类型
29 */
30@property (nonatomic,assign,readonly) NIMNotificationType notificationType;
31
32@end
33
34NS_ASSUME_NONNULL_END
NIMNotificationType
Definition: NIMNotificationContent.h:15
Definition: NIMNotificationContent.h:46
Definition: NIMNotificationObject.h:21
NIMNotificationContent * content
Definition: NIMNotificationObject.h:25
NIMNotificationType notificationType
Definition: NIMNotificationObject.h:30
Definition: NIMMessageObjectProtocol.h:20