PKUserListViewController.h 484 B

123456789101112131415161718192021222324
  1. //
  2. // PKUserListViewController.h
  3. // FanweApp
  4. //
  5. // Created by 志刚杨 on 2018/7/18.
  6. // Copyright © 2018年 xfg. All rights reserved.
  7. //
  8. #import "BGBaseViewController.h"
  9. @protocol PKUserListViewDelegate <NSObject>
  10. -(void)PKUserClickItem:(UserModel *)user pk_id:(NSString *)pk_id;
  11. -(void)closeUserListView;
  12. @optional
  13. @end
  14. @interface PKUserListViewController : BGBaseViewController
  15. @property(nonatomic, assign) id<PKUserListViewDelegate> pDelegate;
  16. -(void)reloadData;
  17. @end