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