Posts

Post marked as solved
3 Replies
0 Views
thanks @robnotyou based on your answer i added a first call and the second call (after interaction with remote) worked on first call: import GameController struct ContentView2: View {   var body: some View {     let a = print("controllers: \(GCController.controllers())")           Button("Query controllers") {       print("controllers: \(GCController.controllers())")     }   } } i think there is some initialization missing (dam apple and it's useless docs) for now this workaround will do