實例方法
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(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。