IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> SwiftUI UsersNotification发送本地通知 -> 正文阅读

[移动开发]SwiftUI UsersNotification发送本地通知

环境配置:VMware+iOS 14.5+Xcode 12+SwiftUI
记录一下SwiftUI发送通知的代码(因为项目的原因所以没放全部的代码,意会一下


因为在建立项目的时候Life Cycle选的是swiftui app,所以项目中没有AppDelegate.swift文件,需要自己新建一个

//
//  AppDelegate.swift
//  
//
//  Created by 拔牙不打麻药 on 2021/10/16.
//

import Foundation
import UIKit
import UserNotifications

class AppDelegate: NSObject, UIApplicationDelegate {
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
        UNUserNotificationCenter.current().requestAuthorization(options: [.alert,.badge,.sound], completionHandler: {(success, error) in
            if success{
                print("success")
            }
            if error != nil{
                print("error")
            }
        })
        return true
    }
}

extension AppDelegate: UNUserNotificationCenterDelegate {

    
    func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
            clearBadge()
            guard let trigger = notification.request.trigger else { return; }
            receiveNotification(flag: "willPresent", trigger: trigger)
        }
        
        func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
            clearBadge()
            guard let trigger = response.notification.request.trigger else { return; }
            receiveNotification(flag: "did receive", trigger: trigger)
        }
        
        func receiveNotification(flag: String, trigger: UNNotificationTrigger) {
            if trigger.isKind(of: UNTimeIntervalNotificationTrigger.classForCoder()) {
                print("Notification \(flag), Is class UNTimeIntervalNotificationTrigger")
            } else if trigger.isKind(of: UNCalendarNotificationTrigger.classForCoder()) {
                print("Notification \(flag), Is class UNCalendarNotificationTrigger")
            }
        }
        
        func clearBadge() {
            UIApplication.shared.applicationIconBadgeNumber = 0
        }
}

然后需要在App.swift文件里修改一下(不同项目swift文件名不同,需要找一下,主要改的是有@的那句

//
//  App.swift
//  
//
//  Created by 拔牙不打麻药 on 2021/9/17.
//

import SwiftUI
import UIKit
import UserNotifications


@main
struct App: App {
    
    @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
    
    var body: some Scene {
        WindowGroup {
           ContentView()
        }
    }
}

然后是NotificationFunc.swift用来放发送通知和撤回通知的函数(撤回通知的函数没用上,酌情使用

//
//  NotificationFunc.swift
//  
//
//  Created by 拔牙不打麻药 on 2021/10/15.
//

import Foundation
import UserNotifications

let NotificationContent = UNMutableNotificationContent()

//发送通知的函数
func sendNotification(){
    NotificationContent.title = "testContent"
    NotificationContent.body = "test"
    NotificationContent.sound = UNNotificationSound.default
    NotificationContent.badge = 1 //这个是app分布页上的红标,强迫症必备
    var matchingDate = DateComponents()
    matchingDate.hour = 19
    matchingDate.minute = 52 //这里是指定了时间到了19:52就会发送通知
    print("matchingDate:\(matchingDate)")
    let trigger = UNCalendarNotificationTrigger(dateMatching: matchingDate, repeats: true)
    let request = UNNotificationRequest(identifier: NotificationContent.title + matchingDate.description, content: NotificationContent, trigger: trigger)

    UNUserNotificationCenter.current().add(request) { err in
        err != nil ? print("添加本地通知错误", err!.localizedDescription) : print("添加本地通知成功")
    }
}

//撤回通知的函数
func widthdrawNotification(clockset:ClockSet){
    let timeNotification = string2Date(clockset.content)
    UNUserNotificationCenter.current().removeDeliveredNotifications(withIdentifiers: [clockset.content + timeNotification.description])
    UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: [clockset.content + timeNotification.description])
}

最后是发送通知UI界面,这里没写全,意会一下

//NotificationShowPage.swift
Text("发送通知")
.onAppear(){                       UNUserNotificationCenter.current().requestAuthorization(options: [.alert,.badge,.sound]){_,_ in
                          
         sendNotification()  
                                }
                            }

这样就可以发送通知了!
不过我在虚拟机上运行的时候发送的挺慢的,几乎要等设定时间的下一分钟才发过来,想要见效快的可以试试改一下NotificationFunc.swift,蓝色线的代码删除,红色字代码替换,红色字代码的意思是每一分钟的第五秒就会发送通知。
在这里插入图片描述

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-10-18 17:30:27  更:2021-10-18 17:32:52 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 0:43:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码