mirror of https://github.com/oxen-io/session-ios
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.
23 lines
561 B
Objective-C
23 lines
561 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class TSThread;
|
|
@class OWSContactsManager;
|
|
@class UIImage;
|
|
|
|
@interface OWSAvatarBuilder : NSObject
|
|
|
|
+ (UIImage *)buildImageForThread:(TSThread *)thread contactsManager:(OWSContactsManager *)contactsManager;
|
|
+ (UIImage *)buildImageForThread:(TSThread *)thread contactsManager:(OWSContactsManager *)contactsManager diameter:(CGFloat)diameter;
|
|
|
|
- (nullable UIImage *)buildSavedImage;
|
|
- (UIImage *)buildDefaultImage;
|
|
- (UIImage *)build;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|