NEMeetingKit V4.8.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 callback:(void (^)(NSInteger resultCode, NSString *resultMessage, id resultData))callback;
45
52- (void)loadFeedbackView:(void (^)(NSInteger code, NSString *message, UIViewController *viewController))callback;
53
54@end
55
56NS_ASSUME_NONNULL_END
Definition NEFeedbackService.h:13
BOOL needAudioDump
Definition NEFeedbackService.h:32
NSArray< NSString * > * imageList
Definition NEFeedbackService.h:28
NSString * description
Definition NEFeedbackService.h:20
NSString * category
Definition NEFeedbackService.h:16
long time
Definition NEFeedbackService.h:24
Definition NEFeedbackService.h:37