| 1234567891011121314151617181920 |
- //
- // MessagecurrencyCell.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/18.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "EaseImageView.h"
- #import "TaoXinModel.h"
- @interface MessagecurrencyCell : UITableViewCell
- @property(strong,nonatomic)UIImageView *image;
- @property(strong,nonatomic)UILabel *title;
- @property(strong,nonatomic)UILabel *content;
- @property(strong,nonatomic)UILabel *time;
- @property(strong,nonatomic)UILabel *corner;
- - (void)assignment:(TaoXinModel *)model;
- @end
|