Instance Method インスタンスメソッド

accessibilityLinkedGroup(id:in:)

Links multiple accessibility elements so that the user can quickly navigate from one element to another, even when the elements are not near each other in the accessibility hierarchy. 複数のアクセシビリティ要素を連結します、それでユーザは素早く一方の要素から他のものへと進んで行けます、それら要素がアクセシビリティ要素階層において互いに近くない時でさえ。

Declaration 宣言

func accessibilityLinkedGroup<ID>(id: ID, in namespace: Namespace.ID) -> some View where ID : Hashable

Parameters パラメータ

id

A hashable identifier used to separate sets of linked elements within the same namespace. Elements with matching namespace and id will be linked together. 連結された要素の集合それらを同じ名前空間内で分離するのに使われるあるハッシュ可能識別子。合致するnamespaceidをもつ要素それらは、1つに連結されます。

namespace

The namespace to use to organize linked accessibility elements. All elements marked with accessibilityLink in this namespace and with the specified id will be linked together. 連結されたアクセシビリティ要素それらを組織化するために使われる名前空間。指定されたidでそしてこの名前空間においてaccessibilityLinkで印される全ての要素は、1つに連結されます。

Discussion 議論

This can be useful to allow quickly jumping between content in a list and the same content shown in a detail view, for example. All elements marked with accessibilityLinkedGroup with the same namespace and identifier will be linked together. これは、例えば、あるリストの中の内容とある詳細ビューの中の同じ内容との間で素早くジャンプすることを許可するのに役立てられます。同じ名前空間と識別子をもつaccessibilityLinkedGroupで印される全ての要素は、1つに連結されます。