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) {

        

    }

}
Answered by Frameworks Engineer in 746855022

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

Accepted Answer

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

do you guys have a ticket associated with the bug?

VoiceOver for SwiftUI List
 
 
Q