Tim Z
Tim Z

Reputation: 19

Firebase Database on AppleWatch

I have a Firebase RealtimeDatabase to Display timetables on the iPhone. How can i get that data to AppleWatch? NSUserDelegate or WKUrlSession. I want to keep it as Updated as possible and I Made a Data Type for the TableCells. For NSUserDefaults I have to convert it. Cant i fetch the data From the Server Directly?

Upvotes: 0

Views: 1698

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599081

There is no native support for WatchOS from the Firebase SDK. See this feature request on the open-source github repo for that SDK.

Your best options at the moment are to either use the REST API directly from the watch, or to proxy all communications through the paired phone. See Using firebase with WatchKit

Upvotes: 1

Related Questions