mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
27 lines
759 B
Objective-C
27 lines
759 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSContactsManager;
|
|
@class ThreadViewModel;
|
|
@class YapDatabaseReadTransaction;
|
|
|
|
@interface HomeViewCell : UITableViewCell
|
|
|
|
+ (NSString *)cellReuseIdentifier;
|
|
|
|
- (void)configureWithThread:(ThreadViewModel *)thread
|
|
contactsManager:(OWSContactsManager *)contactsManager
|
|
isBlocked:(BOOL)isBlocked;
|
|
|
|
- (void)configureWithThread:(ThreadViewModel *)thread
|
|
contactsManager:(OWSContactsManager *)contactsManager
|
|
isBlocked:(BOOL)isBlocked
|
|
overrideSnippet:(nullable NSAttributedString *)overrideSnippet
|
|
overrideDate:(nullable NSDate *)overrideDate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|