// // MessageCell.h // Juick // // Created by Vitaly Takmazov on 03/12/2017. // Copyright © 2017 com.juick. All rights reserved. // #import #import "Message.h" @protocol MessageCellDelegate -(void) avatarClicked:(NSString *)uname; @end @interface MessageCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIImageView *avatar; @property (weak, nonatomic) IBOutlet UILabel *title; @property (weak, nonatomic) IBOutlet UILabel *timestamp; @property (weak, nonatomic) IBOutlet UITextView *text; @property (weak, nonatomic) IBOutlet UIImageView *attach; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *attachmentHeight; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *attachmentWidth; @property (weak, nonatomic) IBOutlet UILabel *summary; @property (nonatomic, strong) id delegate; - (void) configureWithMessage:(Message *)msg selectable:(BOOL)selectable; @end