VoiceOver for SwiftUI List

Hello, I am having an issue at the moment. I noticed for iOS 15 when you have made a list using SwiftUI, VoiceOver would describe which cell is being moved to adjacent to it. Now with iOS 16 it VoiceOver doesn't say anything while being moved up or down. Here is a sample code of what I am speaking of.

struct SampleView: View {

    let alphabetArray = ["a", "b", "c", "d", "e", "f"]

    

    var body: some View {

        List {

            ForEach(alphabetArray, id: \.self) { letter in

                Text(verbatim: letter)

            }

            .onMove(perform: move)

        }

        .environment(\.editMode, .constant(.active))

    }

    

    private func move(from source: IndexSet, to destination: Int) {

        

    }

}

Accepted Reply

Hey there! The team is aware of this issue, thanks for bringing it up here!

  • do you guys actually have a ticket number that is associated with this bug?

Add a Comment

Replies

Hey there! The team is aware of this issue, thanks for bringing it up here!

  • do you guys actually have a ticket number that is associated with this bug?

Add a Comment

do you guys have a ticket associated with the bug?