Няма описание

PdCommentCell.h 599B

12345678910111213141516171819
  1. //
  2. // PdCommentCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/7/17.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. // 评论Cell
  8. #import <UIKit/UIKit.h>
  9. @interface PdCommentCell : UITableViewCell
  10. @property (nonatomic, strong, readonly) UIImageView *iconImgView;
  11. @property (nonatomic, strong, readonly) UIView *bottomLine;
  12. @property (nonatomic, strong, readonly) UILabel *nameLabel;
  13. @property (nonatomic, strong, readonly) UILabel *timeLabel;
  14. @property (nonatomic, strong, readonly) UILabel *commentLabel;
  15. + (CGFloat)cellHeightForCommentText:(NSString *)text;
  16. @end