1234567891011121314151617181920212223242526272829303132 |
- //
- // AllCoachCell.h
- // jiaPei
- //
- // Created by apple on 16/8/18.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AllCoachPlanVC.h"
- @interface AllCoachCell : UITableViewCell
- @property (strong, nonatomic) UIImageView *headImg;
- @property (strong, nonatomic) UILabel *nameLabel;
- @property (strong, nonatomic) UILabel *carTypeLabel;
- @property (strong, nonatomic) UILabel *scoreLabel;
- @property (strong, nonatomic) UILabel *countLabel;
- @property (strong, nonatomic) UIButton *commentBtn;
- @property (nonatomic, retain) AllCoachPlanVC *superVC;
- @property (nonatomic, strong) NSDictionary *dataDic;
- @end
|