No Description

CommentMessageCell.h 612B

123456789101112131415161718192021222324
  1. //
  2. // CommentMSGTableViewCell.h
  3. // FirstLink
  4. //
  5. // Created by Lemon on 15/1/10.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <APAvatarImageView.h>
  10. #import <TTTAttributedLabel.h>
  11. @interface CommentMessageCell : UITableViewCell
  12. @property (nonatomic, strong) UIImageView *headView;
  13. @property (nonatomic, strong) TTTAttributedLabel *nickLabel;
  14. @property (nonatomic, strong) UIImageView *photoView;
  15. @property (nonatomic, strong) UILabel *timeLabel;
  16. @property (nonatomic, strong) TTTAttributedLabel *contentLabel;
  17. + (CGFloat)cellHeightWith:(NSString*)text;
  18. @end