无法 运行 应用程序在较低的目标版本中使用 NotificationContentExtension
Can't run app with NotificationContentExtension in lower target version
应用程序的目标是 iOS 9+。我添加了通知内容扩展 (IOS 10+),但该应用程序无法运行。当我尝试 运行 时出现此消息。
App installation failed
This app contains an app extension that specifies an extension point
identifier that is not supported on this version of iOS for the value
of the NSExtensionPointIdentifier key in its Info.plist.
我想要,如果设备 IOS 10+,运行 应用程序但如果设备低于 IOS 10,则不 运行 通知内容扩展。我该怎么做?
我不想让项目目标为 IOS10+,因为有很多使用旧型号设备的用户不支持 IOS10+。
我想这就是你想要的:
if(@available(iOS 10.0, *)) {
// your code here.
}
应用程序的目标是 iOS 9+。我添加了通知内容扩展 (IOS 10+),但该应用程序无法运行。当我尝试 运行 时出现此消息。
App installation failed
This app contains an app extension that specifies an extension point identifier that is not supported on this version of iOS for the value of the NSExtensionPointIdentifier key in its Info.plist.
我想要,如果设备 IOS 10+,运行 应用程序但如果设备低于 IOS 10,则不 运行 通知内容扩展。我该怎么做?
我不想让项目目标为 IOS10+,因为有很多使用旧型号设备的用户不支持 IOS10+。
我想这就是你想要的:
if(@available(iOS 10.0, *)) {
// your code here.
}