码迷,mamicode.com
首页 > 移动开发 > 详细

UserNotifications ios10 通知使用

时间:2017-05-12 00:21:20      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:使用   port   nbsp   use   bad   log   types   ror   available   

通知在ios10 中推荐使用 

导入  import UserNotifications  头文件

 if #available(iOS 10.0, *) {
            UNUserNotificationCenter.current().requestAuthorization(options: [.carPlay,.badge,.sound,.alert]) { (Success, error) in
            }
        } else {
            let setting = UIUserNotificationSettings(types: [.alert,.badge,.sound], categories: nil)
            application.registerUserNotificationSettings(setting)
        }

 

UserNotifications ios10 通知使用

标签:使用   port   nbsp   use   bad   log   types   ror   available   

原文地址:http://www.cnblogs.com/ZhangShengjie/p/6842956.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!