在Xcode 8 / Swift 3.0中注册推送通知?
我正在尝试让我的应用程序在Xcode 8.0中运行,并且遇到了错误。我知道这个代码在以前版本的swift中运行良好,但我假设在新版本中更改了代码。这是我正在尝试运行的代码:
let settings = UIUserNotificationSettings(forTypes: [.Sound, .Alert, .Badge], categories: nil) UIApplication.sharedApplication().registerUserNotificationSettings(settings)UIApplication.shared().registerForRemoteNotifications()
我得到的错误是“参数标签”(forTypes:,categories :)'与任何可用的重载都不匹配“
是否有一个不同的命令,我可以尝试使其工作?
鸿蒙传说