mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
31 lines
743 B
Objective-C
31 lines
743 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class TSThread;
|
|
|
|
@interface ContactTableViewCell : UITableViewCell
|
|
|
|
+ (NSString *)reuseIdentifier;
|
|
|
|
- (void)configureWithRecipientId:(NSString *)recipientId;
|
|
|
|
- (void)configureWithThread:(TSThread *)thread;
|
|
|
|
// This method should be called _before_ the configure... methods.
|
|
- (void)setAccessoryMessage:(nullable NSString *)accessoryMessage;
|
|
|
|
// This method should be called _after_ the configure... methods.
|
|
- (void)setAttributedSubtitle:(nullable NSAttributedString *)attributedSubtitle;
|
|
|
|
- (NSAttributedString *)verifiedSubtitle;
|
|
|
|
- (BOOL)hasAccessoryText;
|
|
|
|
- (void)ows_setAccessoryView:(UIView *)accessoryView;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|