pub unsafe trait UITextInteractionDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
fn interactionShouldBegin_atPoint(
&self,
interaction: &UITextInteraction,
point: CGPoint,
) -> bool
where Self: Sized + Message { ... }
fn interactionWillBegin(&self, interaction: &UITextInteraction)
where Self: Sized + Message { ... }
fn interactionDidEnd(&self, interaction: &UITextInteraction)
where Self: Sized + Message { ... }
}Available on crate feature
UITextInteraction only.Expand description
Provided Methods§
fn interactionShouldBegin_atPoint( &self, interaction: &UITextInteraction, point: CGPoint, ) -> bool
Available on crate feature
objc2-core-foundation only.