guardListCell.h 747 B

12345678910111213141516171819202122232425
  1. //
  2. // guardListCell.h
  3. // yunbaolive
  4. //
  5. // Created by Boom on 2018/11/12.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "guardListModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface guardListCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  13. @property (weak, nonatomic) IBOutlet UILabel *votesL;
  14. @property (weak, nonatomic) IBOutlet UILabel *yingpiaoL;
  15. @property (weak, nonatomic) IBOutlet UIImageView *typeImgView;
  16. @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
  17. @property (weak, nonatomic) IBOutlet UIImageView *sexImgView;
  18. @property (weak, nonatomic) IBOutlet UIImageView *levelImgView;
  19. @property (nonatomic,strong) guardListModel *model;
  20. @end
  21. NS_ASSUME_NONNULL_END