You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/SignalServiceKit/src/Protocols/ContactsManagerProtocol.h

20 lines
454 B
C

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
10 years ago
@class Contact;
@class PhoneNumber;
@class SignalAccount;
@class UIImage;
10 years ago
@protocol ContactsManagerProtocol <NSObject>
- (NSString * _Nonnull)displayNameForPhoneIdentifier:(NSString * _Nullable)phoneNumber;
- (NSArray<SignalAccount *> * _Nonnull)signalAccounts;
10 years ago
#if TARGET_OS_IPHONE
- (UIImage * _Nullable)imageForPhoneIdentifier:(NSString * _Nullable)phoneNumber;
10 years ago
#endif
@end