Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是当前的UILocalNotification 类,这是苹果刚刚在 wwdc 16 中宣布的iOS 10 UserNotification 。
使用的旧应用程序UILocalNotification会在 iOS 10 上崩溃吗?
UILocalNotification
在 iOS 10 设备上创建UILocalNotification对象不会导致崩溃(我刚刚使用 Xcode 8 beta 进行了尝试)。Xcode 会警告您UILocalNotification从 iOS 10 开始已弃用,而UNNotificationRequest应使用 UserNotifications 模块。UNNotificationRequest如果您的目标是 iOS 10 及更高版本,强烈建议您迁移代码以使用。
UNNotificationRequest