pub unsafe trait UITableViewDropPlaceholderContext: UIDragAnimating + MainThreadOnly {
// Provided methods
fn dragItem(&self) -> Retained<UIDragItem>
where Self: Sized + Message { ... }
fn commitInsertionWithDataSourceUpdates(
&self,
data_source_updates: &DynBlock<dyn Fn(NonNull<NSIndexPath>) + '_>,
) -> bool
where Self: Sized + Message { ... }
fn deletePlaceholder(&self) -> bool
where Self: Sized + Message { ... }
}Available on crate features
UIDragInteraction and UITableView only.Expand description
Provided Methods§
fn dragItem(&self) -> Retained<UIDragItem>
Available on crate feature
UIDragItem only.fn commitInsertionWithDataSourceUpdates( &self, data_source_updates: &DynBlock<dyn Fn(NonNull<NSIndexPath>) + '_>, ) -> bool
Available on crate feature
block2 only.