Renamed TestingViewController to DebugViewController

This commit is contained in:
Aaron
2021-01-24 17:28:55 -05:00
parent d362b5cd3e
commit acfbf6e0da
4 changed files with 54 additions and 32 deletions
+2 -27
View File
@@ -8,7 +8,7 @@
import UIKit
import UserNotifications
class TestingViewController: UIViewController
class DebugViewController: UIViewController
{
override func viewDidLoad()
{
@@ -27,32 +27,7 @@ class TestingViewController: UIViewController
//Sends a test notification
@IBAction func sendNotification(_ sender: Any)
{
let alarm = Alarm(hour: 7, minute: 20, text: "Good morning!", wakeMethod: WVM(name: "walking", desc: "Walk"))
let content = UNMutableNotificationContent()
//Date formatting to string
let today = Date()
let formatter1 = DateFormatter()
formatter1.dateStyle = .long
//Notification content
content.title = alarm.text
content.subtitle = formatter1.string(from: today)
content.body = "Wake method: \(alarm.wakeMethod.name)"
// Notification image content
let imageName = "clock"
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]
// Readies notification to be sent
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 10, repeats: false)
let request = UNNotificationRequest(identifier: "notification.id.01", content: content, trigger: trigger)
// Sends notification
UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)
Notification(alarm: Alarms.fromLocal().listEnabled[0]).sendNotification()
}
@IBAction func addAlarm(_ sender: Any)