// // SchCell.h // jiaPei // // Created by apple on 15/11/9. // Copyright (c) 2015年 JCZ. All rights reserved. // /**cell固定高度100 */ #import #import "SchInfo.h" @interface SchCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIImageView *headImg; @property(nonatomic,strong)SchInfo* school; @property (nonatomic, retain) UILabel *countLabel; @property (nonatomic, assign) NSInteger trainType; +(id)cellWithTableView:(UITableView*)tableView; -(void)setSchDict:(NSDictionary*)dict; -(void)setSparDict:(NSDictionary* )dict; -(void)setCoaDict:(NSDictionary*)dict; -(void)setCoaSparDict:(NSDictionary*)dict; +(CGFloat)cellHeight; @end