123456789101112131415161718192021222324 |
- //
- // CommentMSGTableViewCell.h
- // FirstLink
- //
- // Created by Lemon on 15/1/10.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <APAvatarImageView.h>
- #import <TTTAttributedLabel.h>
- @interface CommentMessageCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *headView;
- @property (nonatomic, strong) TTTAttributedLabel *nickLabel;
- @property (nonatomic, strong) UIImageView *photoView;
- @property (nonatomic, strong) UILabel *timeLabel;
- @property (nonatomic, strong) TTTAttributedLabel *contentLabel;
- + (CGFloat)cellHeightWith:(NSString*)text;
- @end
|