pub unsafe trait UIScrollViewAccessibilityDelegate: UIScrollViewDelegate + IsMainThreadOnly {
    // Provided methods
    unsafe fn accessibilityScrollStatusForScrollView(
        &self,
        scroll_view: &UIScrollView
    ) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn accessibilityAttributedScrollStatusForScrollView(
        &self,
        scroll_view: &UIScrollView
    ) -> Option<Retained<NSAttributedString>>
       where Self: Sized + Message { ... }
}
Available on crate features UIAccessibilityAdditions and UIScrollView only.

Provided Methods§

source

unsafe fn accessibilityScrollStatusForScrollView( &self, scroll_view: &UIScrollView ) -> Option<Retained<NSString>>
where Self: Sized + Message,

Available on crate features UIResponder and UIView only.
source

unsafe fn accessibilityAttributedScrollStatusForScrollView( &self, scroll_view: &UIScrollView ) -> Option<Retained<NSAttributedString>>
where Self: Sized + Message,

Available on crate features UIResponder and UIView only.

Trait Implementations§

source§

impl ProtocolType for dyn UIScrollViewAccessibilityDelegate

source§

const NAME: &'static str = "UIScrollViewAccessibilityDelegate"

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 UIScrollViewAccessibilityDelegate

Implementations on Foreign Types§

source§

impl<T> UIScrollViewAccessibilityDelegate for ProtocolObject<T>

Implementors§