TableSearchViewController.h 760 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // TableSearchViewController.h
  3. // CommonLibrary
  4. //
  5. // Created by AlexiChen on 16/2/18.
  6. // Copyright © 2016年 AlexiChen. All rights reserved.
  7. //
  8. #import "TableRefreshViewController.h"
  9. //
  10. //@interface UISearchController (ReplaceCancelText)
  11. //- (void)replaceCancelText;
  12. //@end
  13. @interface TableSearchResultViewController : TableRefreshViewController<UISearchResultsUpdating, UISearchBarDelegate>
  14. @end
  15. @interface TableSearchViewController : TableRefreshViewController
  16. {
  17. @protected
  18. UISearchController *_searchController;
  19. @protected
  20. // 搜索结果界面
  21. UIViewController<UISearchResultsUpdating, UISearchBarDelegate> *_searchResultViewController;
  22. }
  23. - (Class)searchResultControllerClass;
  24. - (void)addSearchController;
  25. @end