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