1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // 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) NSDictionary *selectDic;
- @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
|