Post

Replies

Boosts

Views

Activity

Reply to SwiftUI 5 | TabView issue
Hi. I just saw this and am having the same the issue since updating to XCode16. My assumption is that in your 2nd & 4th tab you are doing work in .OnAppear. This is what caused the issue for me. If you wrap that work in a queue with a short delay it should resolve it. .onAppear { DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) { updateData(useLive: modelData.liveMkt, spotLive: modelData.spotLive) } }
Oct ’24