PKUserTableViewCell.h 679 B

12345678910111213141516171819202122232425
  1. //
  2. // PKUserTableViewCell.h
  3. // FanweApp
  4. //
  5. // Created by 志刚杨 on 2018/7/18.
  6. // Copyright © 2018年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class UserModel;
  10. typedef void(^clickPkBlock)(UserModel *user);
  11. @interface PKUserTableViewCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UILabel *username;
  13. @property (weak, nonatomic) IBOutlet UIImageView *nickname;
  14. @property (weak, nonatomic) IBOutlet UIImageView *sexImgView;
  15. @property (weak, nonatomic) IBOutlet UIImageView *rankImgView;
  16. @property (nonatomic, strong)UserModel *user;
  17. @property (weak, nonatomic) IBOutlet UIButton *pkBtn;
  18. - (void)setClickPkBlock:(clickPkBlock)clickPkBlock;
  19. @end