Post

Replies

Boosts

Views

Activity

Reply to FocusState and pickers error
The code from the first message works well, the problem its when its in a TabView with pagination in vertical page struct ContentView: View { @State var selection: Int = 1 var body: some View { TabView(selection: $selection) { Text("VIEW-ONE").tag(1) ParentView().tag(2) }.tabViewStyle(.verticalPage) // <---- THIS LINE } } 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") } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Nov ’24
Reply to FocusState and pickers error
In the last WatchOS version 11.2 the bug stills, I know that its a rare case use of the pickers so i think that it wont be fix soon. But this component its the main input data of my app, so my app its almost unusable with a very very bad user experience, so please could you provide a workaround to fix this?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’24
Reply to IDFA Not Resetting on App Reinstallation in iOS 26 Beta
Hi, I ran into the same issue earlier, but just to confirm, starting with iOS 26 beta 9 this behavior seems to be fixed. After uninstalling and reinstalling the app, the ATT prompt is shown again as expected, and the IDFA is properly reset. So it looks like it was a temporary bug in earlier betas rather than an intentional change. Can close this thread.
Topic: Privacy & Security SubTopic: General Tags:
Sep ’25
Reply to Error: Sign-Up Not Completed
It is the first time in two years that this error appears Restarting the iPhone solve my error
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’23
Reply to ColorPicker has a bug in XCode 15 beta 8.
I come here searching for exacting the same problem. We have this bug since firsts betas
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’23
Reply to Bug in iOS 17.0 in UIImagePickerController
Thanks for your fast reply, the number of report its FB13133538
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Sep ’23
Reply to FocusState and pickers error
The code from the first message works well, the problem its when its in a TabView with pagination in vertical page struct ContentView: View { @State var selection: Int = 1 var body: some View { TabView(selection: $selection) { Text("VIEW-ONE").tag(1) ParentView().tag(2) }.tabViewStyle(.verticalPage) // <---- THIS LINE } } 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") } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’24
Reply to FocusState and pickers error
Thanks for your reply. I already submitted the feedback with number FB15723557. We will wait to new updates then. Best regards, Jose Antonio,
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’24
Reply to FocusState and pickers error
In the last WatchOS version 11.2 the bug stills, I know that its a rare case use of the pickers so i think that it wont be fix soon. But this component its the main input data of my app, so my app its almost unusable with a very very bad user experience, so please could you provide a workaround to fix this?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to IDFA Not Resetting on App Reinstallation in iOS 26 Beta
Hi, I ran into the same issue earlier, but just to confirm, starting with iOS 26 beta 9 this behavior seems to be fixed. After uninstalling and reinstalling the app, the ATT prompt is shown again as expected, and the IDFA is properly reset. So it looks like it was a temporary bug in earlier betas rather than an intentional change. Can close this thread.
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to Submission stuck in Waiting for Review
Its actually resolved, thanks!
Replies
Boosts
Views
Activity
5d