RankCell.h 308 B

12345678910111213141516171819
  1. //
  2. // RankCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 15/11/28.
  6. // Copyright (c) 2015年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RankCell : UITableViewCell
  10. @property(nonatomic,assign)NSInteger index;
  11. @property(nonatomic,strong)NSDictionary* model;
  12. +(CGFloat)cellHeight;
  13. @end