我要尋找一個在iOS的實施UIUserNotificationSettings 10UIUserNotificationSettings在iOS的10棄用
蘋果文檔已經給出了進一步使用下面的框架的另一種方法。 UNNotificationSettings中的鏈接here。
是否有任何一個誰可以幫我與示例代碼來實現以下使用UNNotificationSettings代替UIUserNotificationSettings的
let notificationSettings = UIUserNotificationSettings(
forTypes: [.Badge, .Sound, .Alert], categories: nil)
application.registerUserNotificationSettings(notificationSettings)
對不起,我剛剛在這裏找到答案。 http://stackoverflow.com/questions/37956482/registering-for-push-notifications-in-xcode-8-swift-3-0 – Prav