我正在开发一个我想在7.0部署的应用程序
该应用程序使用UILocalNotifications。
使用iOS8.0我明白我需要运行以下内容才能触发通知:
application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Sound | UIUserNotificationType.Alert | UIUserNotificationType.Badge, categories: nil))
麻烦是“application.registerUserNotificationSettings”仅适用于iOS8.0。
我目前已经将其包含在内,部署设置为7.0,并且没有警告。这样可以吗?
Swift似乎没有使用“respondstoselector”,所以我无法检查。