1234567891011121314151617181920212223242526272829 |
- //
- // PindanMSGTableViewCell.h
- // FirstLink
- //
- // Created by Lemon on 15/4/27.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <TTTAttributedLabel.h>
- @interface PindanMessageCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *photoView;
- @property (nonatomic, strong) UIImageView *unreadView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) TTTAttributedLabel *descLabel;
- @property (nonatomic, strong) NSLayoutConstraint *descConstraint;
- @property (nonatomic, strong) UILabel *timeLabel;
- @property (nonatomic, strong) UIButton *detailButton;
- + (CGFloat)titleHeightWith:(NSString *)title;
- + (CGFloat)cellHeightWith:(NSString*)text isWithTitle:(BOOL)isWithTitle;
- - (void)setUnreadViewWith:(NSString*)status;
- - (void)layoutWithTitle:(BOOL)isWithTitle;
- @end
|