pub unsafe trait UIFindInteractionDelegate: NSObjectProtocol + IsMainThreadOnly {
// Provided methods
unsafe fn findInteraction_sessionForView(
&self,
interaction: &UIFindInteraction,
view: &UIView
) -> Option<Retained<UIFindSession>>
where Self: Sized + Message { ... }
unsafe fn findInteraction_didBeginFindSession(
&self,
interaction: &UIFindInteraction,
session: &UIFindSession
)
where Self: Sized + Message { ... }
unsafe fn findInteraction_didEndFindSession(
&self,
interaction: &UIFindInteraction,
session: &UIFindSession
)
where Self: Sized + Message { ... }
}Available on crate feature
UIFindInteraction only.Provided Methods§
unsafe fn findInteraction_sessionForView( &self, interaction: &UIFindInteraction, view: &UIView ) -> Option<Retained<UIFindSession>>
Available on crate features
UIFindSession and UIResponder and UIView only.unsafe fn findInteraction_didBeginFindSession( &self, interaction: &UIFindInteraction, session: &UIFindSession )
Available on crate feature
UIFindSession only.unsafe fn findInteraction_didEndFindSession( &self, interaction: &UIFindInteraction, session: &UIFindSession )
Available on crate feature
UIFindSession only.Trait Implementations§
source§impl ProtocolType for dyn UIFindInteractionDelegate
impl ProtocolType for dyn UIFindInteractionDelegate
impl<T> ImplementedBy<T> for dyn UIFindInteractionDelegate
Implementations on Foreign Types§
impl<T> UIFindInteractionDelegate for ProtocolObject<T>where
T: ?Sized + UIFindInteractionDelegate,
Implementors§
impl UIFindInteractionDelegate for UITextView
Available on crate features
UIResponder and UIScrollView and UIView and UITextView only.