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)
}
}
Post
Replies
Boosts
Views
Activity
I have the same issue in iOS (Mac is working). Also, requestAssets does not seem to load either.