pub unsafe trait UISearchResultsUpdating: NSObjectProtocol + MainThreadOnly {
// Provided methods
unsafe fn updateSearchResultsForSearchController(
&self,
search_controller: &UISearchController,
)
where Self: Sized + Message { ... }
unsafe fn updateSearchResultsForSearchController_selectingSearchSuggestion(
&self,
search_controller: &UISearchController,
search_suggestion: &ProtocolObject<dyn UISearchSuggestion>,
)
where Self: Sized + Message { ... }
}Available on crate feature
UISearchController only.Expand description
Provided Methods§
unsafe fn updateSearchResultsForSearchController( &self, search_controller: &UISearchController, )
Available on crate features
UIResponder and UIViewController only.unsafe fn updateSearchResultsForSearchController_selectingSearchSuggestion( &self, search_controller: &UISearchController, search_suggestion: &ProtocolObject<dyn UISearchSuggestion>, )
Available on crate features
UIResponder and UISearchSuggestion and UIViewController only.