session-ios/SignalUtilitiesKit/To Do/ContactTableViewCell.h

32 lines
743 B
C
Raw Normal View History

//
2018-06-12 17:27:32 +02:00
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
2017-04-26 19:03:51 +02:00
@class TSThread;
2014-05-06 19:41:08 +02:00
@interface ContactTableViewCell : UITableViewCell
2018-06-12 17:27:32 +02:00
+ (NSString *)reuseIdentifier;
2018-10-25 15:35:08 +02:00
- (void)configureWithRecipientId:(NSString *)recipientId;
2017-04-18 22:08:01 +02:00
2018-10-25 15:35:08 +02:00
- (void)configureWithThread:(TSThread *)thread;
2017-04-26 19:03:51 +02:00
// 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;
2014-05-06 19:41:08 +02:00
@end
NS_ASSUME_NONNULL_END