支持可按预期工作的Rich Remote Notifications
iPad / iPhone iOS 13及以下
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
有人遇到类似的问题吗?
最佳答案
我正在使用的一个封闭源第三方框架链接了UserNotificationsUI
。
生成错误是因为UIKitForMac不支持诸如UserNotifications之类的特定于移动的框架,这是正确的行为。
消除第三方依赖性为我解决了这个问题。
关于ios - 为Mac生成UIKit时,“UserNotificationsUI”不可用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56476286/