123456789101112131415161718192021222324252627282930313233343536 |
- //
- // SchCell.h
- // jiaPei
- //
- // Created by apple on 15/11/9.
- // Copyright (c) 2015年 JCZ. All rights reserved.
- //
- /**cell固定高度100
- */
- #import <UIKit/UIKit.h>
- #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
|