12345678910111213141516171819 |
- //
- // RankCell.h
- // jiaPei
- //
- // Created by apple on 15/11/28.
- // Copyright (c) 2015年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface RankCell : UITableViewCell
- @property(nonatomic,assign)NSInteger index;
- @property(nonatomic,strong)NSDictionary* model;
- +(CGFloat)cellHeight;
- @end
|