// // PdCommentCell.h // FirstLink // // Created by jack on 15/7/17. // Copyright (c) 2015年 FirstLink. All rights reserved. // 评论Cell #import @interface PdCommentCell : UITableViewCell @property (nonatomic, strong, readonly) UIImageView *iconImgView; @property (nonatomic, strong, readonly) UIView *bottomLine; @property (nonatomic, strong, readonly) UILabel *nameLabel; @property (nonatomic, strong, readonly) UILabel *timeLabel; @property (nonatomic, strong, readonly) UILabel *commentLabel; + (CGFloat)cellHeightForCommentText:(NSString *)text; @end