NERtcCallKit V3.4.0
载入中...
搜索中...
未找到
NERtcCallKitPushConfig.h
浏览该文件的文档.
1// Copyright (c) 2022 NetEase, Inc. All rights reserved.
2// Use of this source code is governed by a MIT license that can be
3// found in the LICENSE file.
4
5#import <Foundation/Foundation.h>
6
7NS_ASSUME_NONNULL_BEGIN
8
9@interface NERtcCallKitPushConfig : NSObject
10
12@property(nonatomic, copy) NSString *pushTitle;
13
15@property(nonatomic, copy) NSString *pushContent;
16
18@property(nonatomic, strong, readonly) NSMutableDictionary *pushPayload;
19
20@end
21
22NS_ASSUME_NONNULL_END
定义 NERtcCallKitPushConfig.h:10
NSString * pushTitle
推送标题,可修改
定义 NERtcCallKitPushConfig.h:12
NSMutableDictionary * pushPayload
推送payload内容,可自行添加键值对
定义 NERtcCallKitPushConfig.h:18
NSString * pushContent
推送内容,可修改
定义 NERtcCallKitPushConfig.h:15