WFCUSeletedUserSearchResultViewController.h 727 B

1234567891011121314151617181920212223
  1. //
  2. // WFCUSeletedUserSearchResultViewController.h
  3. // WFChatUIKit
  4. //
  5. // Created by Zack Zhang on 2020/4/4.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "WFCUSelectedUserInfo.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WFCUSeletedUserSearchResultViewController : UIViewController
  12. @property (nonatomic, strong)UITableView *tableView;
  13. @property (nonatomic, assign)BOOL needSection;
  14. @property (nonatomic, strong)NSDictionary *sectionDictionary;
  15. @property (nonatomic, strong)NSArray *sectionKeys;
  16. @property (nonatomic, strong)NSMutableArray <WFCUSelectedUserInfo *> *dataSource;
  17. @property (nonatomic, copy) void(^ selectedUser) (WFCUSelectedUserInfo *user);
  18. @end
  19. NS_ASSUME_NONNULL_END