2
  • 我的应用程序具有服务和内容扩展通知目标,用于支持在 iPad/iPhone iOS 13 及更低版本上按预期工作的丰富远程通知
  • 我已经安装了 Xcode 11-beta 和 macOS Catalina 10.15-beta
  • 在使用新构建时,UIKitForMac我收到以下错误 -
"UserNotificationsUI" is not available when building for UIKit for
Mac. You may need to restrict the platforms for which this framework
should be linked in the target editor.
  • 首先尝试添加无效#if canImport() ... #endif的实例UserNotificationsUI
  • 然后删除了也不起作用的扩展目标。

任何人都面临类似的问题?

Xcode11 截图

4

1 回答 1

0

我使用的封闭源第三方框架已UserNotificationsUI链接。

构建错误是因为 UIKitForMac 不支持像 UserNotifications 这样的移动特定框架,这是正确的行为。

删除第三方依赖项为我解决了这个问题。

于 2019-07-04T10:55:53.920 回答