Post

Replies

Boosts

Views

Activity

FocusState and pickers error
Hello, since the last version of iOS and WatchOS I have a problem with this code. This is the minimal version of the code, it have two pickers inside a view of a WatchOS App. The problem its with the focus, I can't change the focus from the first picker to the second one. As I said before, it was working perfectly in WatchOS 10.0 but in 11 the problems started. struct ParentView: View { @FocusState private var focusedField: String? var body: some View { VStack { ChildView1(focusedField: $focusedField) ChildView2(focusedField: $focusedField) } } } struct ChildView1: View { @FocusState.Binding var focusedField: String? @State private var selectedValue: Int = 0 var body: some View { Picker("First Picker", selection: $selectedValue) { ForEach(0..<5) { index in Text("Option \(index)").tag("child\(index)") } }.pickerStyle(WheelPickerStyle()).focused($focusedField, equals: "first") } } struct ChildView2: View { @FocusState.Binding var focusedField: String? @State private var selectedValue: Int = 0 var body: some View { Picker("Second Picker", selection: $selectedValue) { ForEach(0..<5) { index in Text("Option \(index)").tag("childTwo\(index)") } }.pickerStyle(WheelPickerStyle()).focused($focusedField, equals: "second") } } When you do vertical scrolling on the second picker, the focus should be on it, but it dosnt anything. I try even do manually, setting the focusState to the second one, but it sets itself to nil. I hope that you can help me, thanks!
3
0
239
2w
Bug in iOS 17.0 in UIImagePickerController
Im using this code : let imagePicker = UIImagePickerController() imagePicker.allowsEditing = true imagePicker.videoExportPreset = AVAssetExportPresetPassthrough imagePicker.videoQuality = .typeHigh imagePicker.videoMaximumDuration = 15 imagePicker.sourceType = .photoLibrary imagePicker.mediaTypes = [UTType.movie.identifier] When its used in iOS 16.4 with language SPA, or ENG works as expected, not problems. But when its used in iOS 17.0 with language SPA, the image picker view show their buttons always in ENGL. In this image you can see the title "añadir ejercicio" that shows that SPA language its selected
2
0
357
Sep ’23