NEMeetingKit V4.9.0
载入中...
搜索中...
未找到
NEFeedbackService.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 <UIKit/UIKit.h>
6
7NS_ASSUME_NONNULL_BEGIN
8
12@interface NEFeedback : NSObject
16@property(nonatomic, copy, nullable) NSString *category;
20@property(nonatomic, copy) NSString *description;
24@property(nonatomic, assign) long time;
28@property(nonatomic, strong) NSArray<NSString *> *imageList;
32@property(nonatomic, assign) BOOL needAudioDump;
33
34@end
35
36@interface NEFeedbackService : NSObject
37
44- (void)feedback:(NEFeedback *)feedback
45 callback:(void (^)(NSInteger resultCode, NSString *resultMessage, id resultData))callback;
46
53- (void)loadFeedbackView:(void (^)(NSInteger code, NSString *message,
54 UIViewController *viewController))callback;
55
56@end
57
58NS_ASSUME_NONNULL_END
定义 NEFeedbackService.h:13
BOOL needAudioDump
定义 NEFeedbackService.h:32
NSArray< NSString * > * imageList
定义 NEFeedbackService.h:28
NSString * description
定义 NEFeedbackService.h:20
NSString * category
定义 NEFeedbackService.h:16
long time
定义 NEFeedbackService.h:24
定义 NEFeedbackService.h:37