实例方法
accessibility
accessibilityShowsLargeContentViewer(_:)
添加要由大型内容查看器显示的自定义大型内容视图。
声明
func accessibilityShowsLargeContentViewer<V>(_ largeContentView: () -> V) -> some View where V : View
详述
仅在由于不可避免的设计限制而必须保持较小项目的情况下才使用大型内容查看器。例如,标签栏中的按钮保持较小,以便为主要应用内容留出更多空间。
以下示例显示如何添加自定义大内容视图:
var body: some View {
Button(action: newMessage) {
Image(systemName: "plus")
}
.accessibilityShowsLargeContentViewer {
Label("New Message", systemImage: "plus")
}
}
不要使用大型内容查看器来代替适当的动态类型支持。例如,动态类型允许列表中的项目垂直增长或缩小以适应用户的首选字体大小。仅在由于不可避免的设计限制而必须保持较小项目的情况下才使用大型内容查看器。
例如,动态类型大小受View/dynamicTypeSize(_:)-26aj0
或View/dynamicTypeSize(_:)-26aj0
约束的视图可能需要较大的内容视图。
可用版本
iOS 15.0+, iPadOS 15.0+, macOS 12.0+, Mac Catalyst 15.0+, tvOS 15.0+, watchOS 8.0+
相关用法
- Swift Never accessibilityShowsLargeContentViewer()用法及代码示例
- Swift Never accessibilityScrollAction(_:)用法及代码示例
- Swift Never accessibilityAction(action:label:)用法及代码示例
- Swift Never accessibilityAction(_:_:)用法及代码示例
- Swift Never accessibilityChildren(children:)用法及代码示例
- Swift Never accessibilityRepresentation(representation:)用法及代码示例
- Swift Never accessibilityRotor(_:entries:entryID:entryLabel:)用法及代码示例
- Swift Never accessibilityAction(named:_:)用法及代码示例
- Swift Never accessibilityChartDescriptor(_:)用法及代码示例
- Swift Never accessibilityAdjustableAction(_:)用法及代码示例
- Swift Never accessibilityRotor(_:entries:)用法及代码示例
- Swift Never accessibilityRotor(_:textRanges:)用法及代码示例
- Swift Never accessibilityRotor(_:entries:entryLabel:)用法及代码示例
- 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 accessibilityShowsLargeContentViewer(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。