| 12345678910111213141516171819202122 |
- //
- // MyfollewCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/8/11.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "GuanzhuModel.h"
- @interface MyfollewCell : UITableViewCell
- @property(copy,nonatomic)UIImageView *headimage;
- @property(copy,nonatomic)UILabel *name;
- @property(copy,nonatomic)UILabel *nameTitle;
- @property(copy,nonatomic)UILabel *namedetail;
- @property(copy,nonatomic)UIButton *fowllerbT;
- @property(copy,nonatomic)UILabel *fowllerNumber;
- - (void)assignment:(GuanzhuModel *)model type:(NSString *)str;
- @end
|