| 12345678910111213141516171819 |
- //
- // NewMyneedsCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/8/11.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "NewAchievementsModel.h"
- @interface NewMyneedsCell : UITableViewCell
- @property(copy,nonatomic)UILabel *title;
- @property(copy,nonatomic)UILabel *time;
- @property(copy,nonatomic)UILabel *Collectionnumber;
- @property(copy,nonatomic)UIButton *fowllerbT;
- - (void)assignment:(NewAchievementsModel *)model;
- @end
|