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

focusSection()

Indicates that the view’s frame and cohort of focusable descendants should be used to guide focus movement.

Declaration 宣言

func focusSection() -> some View

Return Value 戻り値

A view that can guide focus to its focusable descendents.

Discussion 議論

Use focus sections to customize SwiftUI’s behavior when the user moves focus between views.

The following tvOS example places three buttons (“1”, “2”, and “3”) at the upper left of the screen and three buttons (“A”, “B”, and “C”) at the bottom right. By default, swiping right on the Siri Remote on any of the buttons in the “1” - “3” group would do nothing, since the focus system finds no focusable views directly to their right. But by declaring the VStack that encloses buttons “A” - “C” as a focus section, the VStack can receive focus, and deliver that focus to its first focusable child (button “A”). The example puts a border on the VStack to illustrate this spatial arrangement.


var body: some View {
    HStack {
        VStack {
            Button ("1") {}
            Button ("2") {}
            Button ("3") {}
            Spacer()
        }
        .border(Color.white, width: 2)


        Spacer()
        VStack {
            Spacer()
            Button ("A") {}
            Button ("B") {}
            Button ("C") {}
        }
        .border(Color.white, width: 2)
        .focusSection()
    }
}

A tvOS app with three buttons labeled 1, 2, and 3 at upper left,

Note that because the VStack containing buttons “1” - “3” does not declare itself as a focus section, it is impossible to direct focus back to the left from buttons “A” - “C”. None of those buttons has a focusable view — in this case either a button or a VStack with the focusSection() modifier — directly to its left.

Applying this modifier to a view affects focus behavior based on the style of movement:

  • Directional movement: Navigating with Siri Remote gestures, arrow keys on a keyboard, or any other type of input that works in terms of cardinal directions (up, down, left, right) produces directional movement. When modified with focusSection(), the view’s frame becomes capable of accepting focus in order to direct it at its nearest focusable descendant in the direction of travel. In the earlier example, declaring the right-side VStack as a focus section allowed it to receive right-directed focus from the buttons on the left.

  • Sequential movement: Navigating with a Digital Crown, the Tab key on a keyboard, or any other type of input that works in terms of the next or previous item in a sequence, produces sequential movement. When you use the focusSection() modifier, SwiftUI deviates from its default layout-based sequence to visit each of the modified view’s focusable descendants before resuming the default sequence. Within the set of focusable descendants, SwiftUI continues to visit views in layout order (leading-to-trailing, top-to-bottom).

focusSection() does not affect the focusability of the modified view. If the modified view has no focusable descendants, then the modifier does nothing.

See Also 参照

Focus