SlectSchCell.h 682 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // SchCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/11/9.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //
  8. /**cell固定高度100
  9. */
  10. #import <UIKit/UIKit.h>
  11. #import "SchInfo.h"
  12. @interface SchCell : UITableViewCell
  13. @property (weak, nonatomic) IBOutlet UIImageView *headImg;
  14. @property(nonatomic,strong)SchInfo* school;
  15. @property (nonatomic, retain) UILabel *countLabel;
  16. @property (nonatomic, assign) NSInteger trainType;
  17. +(id)cellWithTableView:(UITableView*)tableView;
  18. -(void)setSchDict:(NSDictionary*)dict;
  19. -(void)setSparDict:(NSDictionary* )dict;
  20. -(void)setCoaDict:(NSDictionary*)dict;
  21. -(void)setCoaSparDict:(NSDictionary*)dict;
  22. +(CGFloat)cellHeight;
  23. @end