DistributionCell.h 690 B

12345678910111213141516171819202122
  1. //
  2. // DistributionCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2016/12/27.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class LiveDataModel;
  10. @interface DistributionCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *ticketLabel;
  14. @property (nonatomic, strong) GlobalVariables *BuguLive;
  15. //@property (nonatomic, strong) UIView *lineView;//下滑线
  16. @property (weak, nonatomic) IBOutlet UIView *lineView;
  17. - (void)setCellWithModel:(LiveDataModel *)model;
  18. @end