pub unsafe trait UIPickerViewAccessibilityDelegate: UIPickerViewDelegate + MainThreadOnly {
// Provided methods
fn pickerView_accessibilityLabelForComponent(
&self,
picker_view: &UIPickerView,
component: NSInteger,
) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
fn pickerView_accessibilityHintForComponent(
&self,
picker_view: &UIPickerView,
component: NSInteger,
) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
fn pickerView_accessibilityUserInputLabelsForComponent(
&self,
picker_view: &UIPickerView,
component: NSInteger,
) -> Retained<NSArray<NSString>>
where Self: Sized + Message { ... }
fn pickerView_accessibilityAttributedLabelForComponent(
&self,
picker_view: &UIPickerView,
component: NSInteger,
) -> Option<Retained<NSAttributedString>>
where Self: Sized + Message { ... }
fn pickerView_accessibilityAttributedHintForComponent(
&self,
picker_view: &UIPickerView,
component: NSInteger,
) -> Option<Retained<NSAttributedString>>
where Self: Sized + Message { ... }
fn pickerView_accessibilityAttributedUserInputLabelsForComponent(
&self,
picker_view: &UIPickerView,
component: NSInteger,
) -> Retained<NSArray<NSAttributedString>>
where Self: Sized + Message { ... }
}Available on crate features
UIAccessibilityAdditions and UIPickerView only.Expand description
Provided Methods§
fn pickerView_accessibilityLabelForComponent( &self, picker_view: &UIPickerView, component: NSInteger, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder and UIView only.fn pickerView_accessibilityHintForComponent( &self, picker_view: &UIPickerView, component: NSInteger, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder and UIView only.fn pickerView_accessibilityUserInputLabelsForComponent( &self, picker_view: &UIPickerView, component: NSInteger, ) -> Retained<NSArray<NSString>>
Available on crate features
UIResponder and UIView only.fn pickerView_accessibilityAttributedLabelForComponent( &self, picker_view: &UIPickerView, component: NSInteger, ) -> Option<Retained<NSAttributedString>>
Available on crate features
UIResponder and UIView only.fn pickerView_accessibilityAttributedHintForComponent( &self, picker_view: &UIPickerView, component: NSInteger, ) -> Option<Retained<NSAttributedString>>
Available on crate features
UIResponder and UIView only.fn pickerView_accessibilityAttributedUserInputLabelsForComponent( &self, picker_view: &UIPickerView, component: NSInteger, ) -> Retained<NSArray<NSAttributedString>>
Available on crate features
UIResponder and UIView only.Trait Implementations§
impl<T> ImplementedBy<T> for dyn UIPickerViewAccessibilityDelegate
Source§impl ProtocolType for dyn UIPickerViewAccessibilityDelegate
impl ProtocolType for dyn UIPickerViewAccessibilityDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".