| 1234567891011121314151617181920 |
- //
- // MyattentionCell.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/9.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MyattentionModel.h"
- @interface MyattentionCell : UITableViewCell
- @property(copy,nonatomic)UIImageView *image;//类型颜色
- @property(copy,nonatomic)UILabel *title;//标题
- @property(copy,nonatomic)UILabel *time;//时间
- @property(copy,nonatomic)UIButton *follow;//关注按钮
- @property(copy,nonatomic)UILabel *countInterest;//关注数
- - (void)assignment:(MyattentionModel *)model;
- @end
|