pub unsafe trait UITableViewDataSourcePrefetching: NSObjectProtocol + MainThreadOnly {
// Provided methods
unsafe fn tableView_prefetchRowsAtIndexPaths(
&self,
table_view: &UITableView,
index_paths: &NSArray<NSIndexPath>,
)
where Self: Sized + Message { ... }
unsafe fn tableView_cancelPrefetchingForRowsAtIndexPaths(
&self,
table_view: &UITableView,
index_paths: &NSArray<NSIndexPath>,
)
where Self: Sized + Message { ... }
}
Available on crate feature
UITableView
only.Expand description
Provided Methods§
unsafe fn tableView_prefetchRowsAtIndexPaths( &self, table_view: &UITableView, index_paths: &NSArray<NSIndexPath>, )
Available on crate features
UIResponder
and UIScrollView
and UIView
only.unsafe fn tableView_cancelPrefetchingForRowsAtIndexPaths( &self, table_view: &UITableView, index_paths: &NSArray<NSIndexPath>, )
Available on crate features
UIResponder
and UIScrollView
and UIView
only.