Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试处理 WCSession 默认实例。但它给出了以下编译器问题。
默认实例的定义
尝试这个:
var session : WCSession! func startSession() { if WCSession.isSupported() { session = WCSession.default() session.delegate = self session.activate() } }
在要激活 WCSession 的任何地方调用 startSession()。最好在 AppDelegate 和 ExtensionDelegate 中。