Swift - 设置应用程序图角标

作者: IOS开发攻城狮_Fyc | 来源:发表于2017-07-26 14:09 被阅读0次

    使用Swift设置应用程序角标步骤如下:

    1. 设置角标
       UIApplication.shared.applicationIconBadgeNumber = 10
    
    2. 应用程序启动后,也就是从后台到前台。需要将应用程序的角标清空。
       UIApplication.shared.applicationIconBadgeNumber = 0
    
    3. 想要显示角标需要在appDelegate里进行注册
        //设置用户授权显示通知
        if #available(iOS 10.0, *) {
         UNUserNotificationCenter.current().requestAuthorization(options: [.alert,.badge,.carPlay,.sound], completionHandler: { (success, error) in
            print("授权" + (success ? "成功" : "失败"))
          })
         } else {
          // 10.0 以下
          // 取得用户授权显示通知【上方的提示条/声音/BadgeNumber】
            let notifySettings = UIUserNotificationSettings(types: [.alert,.badge,.sound], categories: nil)
            UIApplication.shared.registerUserNotificationSettings(notifySettings)
        }
    

    相关文章

      网友评论

        本文标题:Swift - 设置应用程序图角标

        本文链接:https://www.haomeiwen.com/subject/ruonkxtx.html