// // PindanMSGTableViewCell.h // FirstLink // // Created by Lemon on 15/4/27. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import #import @interface PindanMessageCell : UITableViewCell @property (nonatomic, strong) UIImageView *photoView; @property (nonatomic, strong) UIImageView *unreadView; @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, strong) TTTAttributedLabel *descLabel; @property (nonatomic, strong) NSLayoutConstraint *descConstraint; @property (nonatomic, strong) UILabel *timeLabel; @property (nonatomic, strong) UIButton *detailButton; + (CGFloat)titleHeightWith:(NSString *)title; + (CGFloat)cellHeightWith:(NSString*)text isWithTitle:(BOOL)isWithTitle; - (void)setUnreadViewWith:(NSString*)status; - (void)layoutWithTitle:(BOOL)isWithTitle; @end