Post

Replies

Boosts

Views

Activity

Reply to SwiftUI NavigationLink freezing when tapped
I've had similar issue. When clicking NavigationLink there was an infinite init loop. It appears to be caused by initiating a class object labeled as @State instead of @StateObject. @State var viewModel = PortalSelectionViewModel() corrected to @StateObject var viewModel = PortalSelectionViewModel()
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’23
Reply to SwiftUI NavigationLink freezing when tapped
I've had similar issue. When clicking NavigationLink there was an infinite init loop. It appears to be caused by initiating a class object labeled as @State instead of @StateObject. @State var viewModel = PortalSelectionViewModel() corrected to @StateObject var viewModel = PortalSelectionViewModel()
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’23
Reply to React Native app with CarPlay support, bug on launch sometimes after iOS 15
Do you have any code in AppDelegate "didFinishLaunchingWithOptions"? I'm unsure if this is intended behavior or a bug but recently code in "didFinishLaunchingWithOptions" is being run during App Warming without the ability to execute some code. See: https://developer.apple.com/forums/thread/667959?answerId=693810022#693810022
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’22