pub unsafe trait UILargeContentViewerInteractionDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn largeContentViewerInteraction_didEndOnItem_atPoint(
        &self,
        interaction: &UILargeContentViewerInteraction,
        item: Option<&ProtocolObject<dyn UILargeContentViewerItem>>,
        point: CGPoint
    )
       where Self: Sized + Message { ... }
    unsafe fn largeContentViewerInteraction_itemAtPoint(
        &self,
        interaction: &UILargeContentViewerInteraction,
        point: CGPoint
    ) -> Option<Retained<ProtocolObject<dyn UILargeContentViewerItem>>>
       where Self: Sized + Message { ... }
    unsafe fn viewControllerForLargeContentViewerInteraction(
        &self,
        interaction: &UILargeContentViewerInteraction
    ) -> Retained<UIViewController>
       where Self: Sized + Message { ... }
}
Available on crate feature UILargeContentViewer only.

Provided Methods§

Trait Implementations§

source§

impl ProtocolType for dyn UILargeContentViewerInteractionDelegate

source§

const NAME: &'static str = "UILargeContentViewerInteractionDelegate"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn UILargeContentViewerInteractionDelegate

Implementations on Foreign Types§

source§

impl<T> UILargeContentViewerInteractionDelegate for ProtocolObject<T>

Implementors§