为 watchOS 模拟器构建时 NotificationCenter 不可用
NotificationCenter is not available when building for watchOS Simulator
我想在 watchOS 目标中使用 NotificationCenter。但是我在 import NotificationCenter
:
构建应用程序时收到以下错误消息
NotificationCenter is not available when building for watchOS Simulator.
Consider using `#if !os(watchOS)` to conditionally import this framework.
你是如何处理这种情况的?我不能再使用模拟器了吗?
好吧,我搞混了。我想在我的 watchOs 框架中做的是这样的事情:
NotificationCenter.default.post(...)
class 和 import NotificationCenter
在错误的框架中。在 watchOs 框架中不需要这样的 class 。所以我的问题已经解决了。
我想在 watchOS 目标中使用 NotificationCenter。但是我在 import NotificationCenter
:
NotificationCenter is not available when building for watchOS Simulator.
Consider using `#if !os(watchOS)` to conditionally import this framework.
你是如何处理这种情况的?我不能再使用模拟器了吗?
好吧,我搞混了。我想在我的 watchOs 框架中做的是这样的事情:
NotificationCenter.default.post(...)
class 和 import NotificationCenter
在错误的框架中。在 watchOs 框架中不需要这样的 class 。所以我的问题已经解决了。