AllCoachCell.h 659 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // AllCoachCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/8/18.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AllCoachPlanVC.h"
  10. @interface AllCoachCell : UITableViewCell
  11. @property (strong, nonatomic) UIImageView *headImg;
  12. @property (strong, nonatomic) UILabel *nameLabel;
  13. @property (strong, nonatomic) UILabel *carTypeLabel;
  14. @property (strong, nonatomic) UILabel *scoreLabel;
  15. @property (strong, nonatomic) UILabel *countLabel;
  16. @property (strong, nonatomic) UIButton *commentBtn;
  17. @property (nonatomic, retain) AllCoachPlanVC *superVC;
  18. @property (nonatomic, strong) NSDictionary *dataDic;
  19. @end