accessibilityChartDescriptor(_:)
声明
func accessibilityChartDescriptor<R>(_ representable: R) -> some View where R : AXChartDescriptorRepresentable
参数
chartDescriptor
AXChartDescriptorRepresentable
用于说明您的图表及其数据。
详述
使用此方法提供有关您的图表视图的信息,以允许 VoiceOver 和其他辅助技术用户感知您的图表及其数据并与之交互。
这可以应用于表示图表的任何视图,包括图像和custom-rendered 图表视图。
accessibilityChartDescriptor
修饰符可以应用于表示图表的任意视图,最简单的情况是图表的图像。视图的实现细节并不重要,重要的是它代表了一个图表,并且提供的图表说明符准确地说明了图表的内容。
示例用法:
首先定义您的AXChartDescriptorRepresentable
类型。
struct MyChartDescriptorRepresentable: AXChartDescriptorRepresentable { func makeChartDescriptor() -> AXChartDescriptor { //在此处构建并返回您的 AXChartDescriptor
}
func updateChartDescriptor(_ descriptor: AXChartDescriptor) {
// Update your chart descriptor with any new values, or
// don't override if your chart doesn't have changing values.
}
}
然后使用 accessibilityChartDescriptor
修饰符将 AXChartDescriptorRepresentable
类型的实例提供给表示图表的视图:
SomeChartView() .accessibilityChartDescriptor(MyChartDescriptorRepresentable())
可用版本
相关用法
- Swift Never accessibilityChildren(children:)用法及代码示例
- Swift Never accessibilityAction(action:label:)用法及代码示例
- Swift Never accessibilityAction(_:_:)用法及代码示例
- Swift Never accessibilityRepresentation(representation:)用法及代码示例
- Swift Never accessibilityRotor(_:entries:entryID:entryLabel:)用法及代码示例
- Swift Never accessibilityAction(named:_:)用法及代码示例
- Swift Never accessibilityAdjustableAction(_:)用法及代码示例
- Swift Never accessibilityShowsLargeContentViewer()用法及代码示例
- Swift Never accessibilityRotor(_:entries:)用法及代码示例
- Swift Never accessibilityRotor(_:textRanges:)用法及代码示例
- Swift Never accessibilityRotor(_:entries:entryLabel:)用法及代码示例
- Swift Never accessibilityScrollAction(_:)用法及代码示例
- Swift Never accessibilityShowsLargeContentViewer(_:)用法及代码示例
- Swift Never alert(isPresented:error:actions:message:)用法及代码示例
- Swift Never autocorrectionDisabled(_:)用法及代码示例
- Swift Never alert(_:isPresented:presenting:actions:)用法及代码示例
- Swift Never alignmentGuide(_:computeValue:)用法及代码示例
- Swift Never allowsTightening(_:)用法及代码示例
- Swift Never alert(isPresented:error:actions:)用法及代码示例
- Swift Never alert(_:isPresented:actions:)用法及代码示例
- Swift Never alert(_:isPresented:presenting:actions:message:)用法及代码示例
- Swift Never aspectRatio(_:contentMode:)用法及代码示例
- Swift Never alert(_:isPresented:actions:message:)用法及代码示例
- Swift Never pageCommand(value:in:step:)用法及代码示例
- Swift Never opacity(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Never accessibilityChartDescriptor(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。