GameDistributionCell.h 661 B

12345678910111213141516171819
  1. //
  2. // GameDistributionCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/4/5.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "GameDistributionModel.h"
  10. @interface GameDistributionCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *headImageView;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  13. @property (weak, nonatomic) IBOutlet UIImageView *icomeStyleImg;
  14. @property (weak, nonatomic) IBOutlet UILabel *incomeLabel;
  15. @property (weak, nonatomic) IBOutlet UIView *lineView;
  16. @property (nonatomic, strong) GameUserModel * model;
  17. + (instancetype)cellWithTableView:(UITableView *)tableView;
  18. @end