EMSearchViewController.h 600 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // EMSearchViewController.h
  3. // ChatDemo-UI3.0
  4. //
  5. // Created by XieYajie on 2019/1/16.
  6. // Copyright © 2019 XieYajie. All rights reserved.
  7. //
  8. #import "EMRefreshViewController.h"
  9. #import "EMSearchBar.h"
  10. #import "EMRealtimeSearch.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface EMSearchViewController : EMRefreshViewController<EMSearchBarDelegate>
  13. @property (nonatomic) BOOL isSearching;
  14. @property (nonatomic, strong) EMSearchBar *searchBar;
  15. @property (nonatomic, strong) NSMutableArray *searchResults;
  16. @property (nonatomic, strong) UITableView *searchResultTableView;
  17. @end
  18. NS_ASSUME_NONNULL_END