pub unsafe trait UIScrollViewAccessibilityDelegate: UIScrollViewDelegate + MainThreadOnly {
// 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.Expand description
Provided Methods§
unsafe fn accessibilityScrollStatusForScrollView( &self, scroll_view: &UIScrollView, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder and UIView only.unsafe fn accessibilityAttributedScrollStatusForScrollView( &self, scroll_view: &UIScrollView, ) -> Option<Retained<NSAttributedString>>
Available on crate features
UIResponder and UIView only.