ContentView.swift
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | // // ContentView.swift // swiftuidev15ios // // Created by Cairocoders // import SwiftUI struct ContentView: View { var body: some View { NavigationView { ZStack { Button(action: { self.send() }) { Text( "Send Notification" ) }.navigationBarTitle( "Home" ) } } } func send() { UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { success, error in if success { print( "All set!" ) } else if let error = error { print(error.localizedDescription) } } let content = UNMutableNotificationContent() content.title = "Message" content.subtitle = "New Tutorial from cairocoders!!" content.sound = UNNotificationSound. default let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 60, repeats: true ) let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger) UNUserNotificationCenter.current().add(request) } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } |