pub unsafe trait UISearchDisplayDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
unsafe fn searchDisplayControllerWillBeginSearch(
&self,
controller: &UISearchDisplayController,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayControllerDidBeginSearch(
&self,
controller: &UISearchDisplayController,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayControllerWillEndSearch(
&self,
controller: &UISearchDisplayController,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayControllerDidEndSearch(
&self,
controller: &UISearchDisplayController,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_didLoadSearchResultsTableView(
&self,
controller: &UISearchDisplayController,
table_view: &UITableView,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_willUnloadSearchResultsTableView(
&self,
controller: &UISearchDisplayController,
table_view: &UITableView,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_willShowSearchResultsTableView(
&self,
controller: &UISearchDisplayController,
table_view: &UITableView,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_didShowSearchResultsTableView(
&self,
controller: &UISearchDisplayController,
table_view: &UITableView,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_willHideSearchResultsTableView(
&self,
controller: &UISearchDisplayController,
table_view: &UITableView,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_didHideSearchResultsTableView(
&self,
controller: &UISearchDisplayController,
table_view: &UITableView,
)
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_shouldReloadTableForSearchString(
&self,
controller: &UISearchDisplayController,
search_string: Option<&NSString>,
) -> bool
where Self: Sized + Message { ... }
unsafe fn searchDisplayController_shouldReloadTableForSearchScope(
&self,
controller: &UISearchDisplayController,
search_option: NSInteger,
) -> bool
where Self: Sized + Message { ... }
}Available on crate feature
UISearchDisplayController only.Expand description
Provided MethodsΒ§
unsafe fn searchDisplayControllerWillBeginSearch( &self, controller: &UISearchDisplayController, )
πDeprecated
unsafe fn searchDisplayControllerDidBeginSearch( &self, controller: &UISearchDisplayController, )
πDeprecated
unsafe fn searchDisplayControllerWillEndSearch( &self, controller: &UISearchDisplayController, )
πDeprecated
unsafe fn searchDisplayControllerDidEndSearch( &self, controller: &UISearchDisplayController, )
πDeprecated
unsafe fn searchDisplayController_didLoadSearchResultsTableView( &self, controller: &UISearchDisplayController, table_view: &UITableView, )
πDeprecated
Available on crate features
UIResponder and UIScrollView and UITableView and UIView only.unsafe fn searchDisplayController_willUnloadSearchResultsTableView( &self, controller: &UISearchDisplayController, table_view: &UITableView, )
πDeprecated
Available on crate features
UIResponder and UIScrollView and UITableView and UIView only.unsafe fn searchDisplayController_willShowSearchResultsTableView( &self, controller: &UISearchDisplayController, table_view: &UITableView, )
πDeprecated
Available on crate features
UIResponder and UIScrollView and UITableView and UIView only.unsafe fn searchDisplayController_didShowSearchResultsTableView( &self, controller: &UISearchDisplayController, table_view: &UITableView, )
πDeprecated
Available on crate features
UIResponder and UIScrollView and UITableView and UIView only.unsafe fn searchDisplayController_willHideSearchResultsTableView( &self, controller: &UISearchDisplayController, table_view: &UITableView, )
πDeprecated
Available on crate features
UIResponder and UIScrollView and UITableView and UIView only.unsafe fn searchDisplayController_didHideSearchResultsTableView( &self, controller: &UISearchDisplayController, table_view: &UITableView, )
πDeprecated
Available on crate features
UIResponder and UIScrollView and UITableView and UIView only.unsafe fn searchDisplayController_shouldReloadTableForSearchString( &self, controller: &UISearchDisplayController, search_string: Option<&NSString>, ) -> bool
πDeprecated
unsafe fn searchDisplayController_shouldReloadTableForSearchScope( &self, controller: &UISearchDisplayController, search_option: NSInteger, ) -> bool
πDeprecated