NEMeetingKit V4.8.0
载入中...
搜索中...
未找到
NEContactsService.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#import "NEContact.h"
7
8NS_ASSUME_NONNULL_BEGIN
9
14@interface NEContactsService : NSObject
15
24- (void)searchContactListByPhoneNumber:(NSString *)phoneNumber pageSize:(int)pageSize pageNum:(int)pageNum callback:(void (^)(NSInteger code, NSString *message, NSArray<NEContact *> *data))callback;
25
34- (void)searchContactListByName:(NSString *)name pageSize:(int)pageSize pageNum:(int)pageNum callback:(void (^)(NSInteger code, NSString *message, NSArray<NEContact *> *data))callback;
35
42- (void)getContactsInfo:(NSArray<NSString *> *)userUuids callback:(void (^)(NSInteger code, NSString *message, NEContactsInfoResult *data))callback;
43
44@end
45
46NS_ASSUME_NONNULL_END
Definition NEContact.h:13
Definition NEContact.h:40
Definition NEContactsService.h:15