session-ios/Signal/src/views/ContactTableViewCell.h

18 lines
344 B
C
Raw Normal View History

2014-05-06 19:41:08 +02:00
#import <UIKit/UIKit.h>
#import "OWSContactsManager.h"
2014-05-06 19:41:08 +02:00
/**
*
* ContactTableViewCell displays a contact from a Contact object.
*
*/
@interface ContactTableViewCell : UITableViewCell
@property (nonatomic, strong) IBOutlet UILabel *nameLabel;
@property BOOL shouldShowContactButtons;
2014-05-06 19:41:08 +02:00
- (void)configureWithContact:(Contact *)contact;
2015-11-29 02:03:52 +01:00
2014-05-06 19:41:08 +02:00
@end