123456789101112131415161718192021222324 |
- //
- // SysMsgTableViewCell.h
- // FirstLink
- //
- // Created by ascii on 14/12/26.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <TTTAttributedLabel.h>
- #import <APAvatarImageView.h>
- #import "FKAppMessage.h"
- @interface SysMessageCell : UITableViewCell
- @property (nonatomic, strong) UILabel *headLabel;
- @property (nonatomic, strong) TTTAttributedLabel *timeLabel;
- @property (nonatomic, strong) TTTAttributedLabel *descLabel;
- @property (nonatomic, strong) UIButton *detailButton;
- + (CGFloat)cellHeightWith:(FKAppMessage*)item;
- @end
|