zoukankan      html  css  js  c++  java
  • 本地通知

    import UserNotifications

    func regisNot(){

            

            if #available(iOS 10.0, *) {

                UNUserNotificationCenter.current().requestAuthorization(options: [.alert]) { (success, error) in

                    if success {

                        print("success")

                    } else {

                        print("error")

                    }

                }

            } else {

                // Fallback on earlier versions

            }

            

            

            // 1

            if #available(iOS 10.0, *) {

                let content = UNMutableNotificationContent()

                content.title = "Notification Tutorial"

                content.subtitle = "from ioscreator.com"

                content.body = " Notification triggered"

                

                // 2

                let imageName = "Icon123"

                guard let imageURL = Bundle.main.url(forResource: imageName, withExtension: "png") else { return }

                

                let attachment = try! UNNotificationAttachment(identifier: imageName, url: imageURL, options: .none)

                

                content.attachments = [attachment]

                

                // 3

                let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 10, repeats: false)

                let request = UNNotificationRequest(identifier: "notification.id.01", content: content, trigger: trigger)

                

                // 4

                UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)

            } else {

                // Fallback on earlier versions

            }

            

            

            

            

            

            

        }

        

    群号:186052819
  • 相关阅读:
    SVN报错working copy is not uptodate
    AndroidStudio中获得的VersionCode一直为1和VersionName一直为1.0
    OkHttp
    MockWebServer使用指南(转载)
    Android的Toolbar(含溢出菜单设置[弹出菜单的使用])的使用PopMenu的样式
    8-13笔记-安卓兼容
    自定义Dialog
    安卓圆角Button XML文件
    递归方法扫面文件夹(JAVA控制台程序)
    8月12笔记-安卓文件扫描
  • 原文地址:https://www.cnblogs.com/zuidap/p/6274522.html
Copyright © 2011-2022 走看看