12345678910111213141516171819 |
- //
- // PdCommentCell.h
- // FirstLink
- //
- // Created by jack on 15/7/17.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- // 评论Cell
- #import <UIKit/UIKit.h>
- @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
|