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.
|
|
|
//
|
|
|
|
// 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
|