1. Cơ bản ta sẽ tạo 1 Singleton gọi là Helper hay gì cũng được, mục tiêu là observe specific events như là notification được access hay pop-up lên, hiện alert khi ở background v..v.
Lớp class mình sẽ như sau:
class NotificationHelper {
private init() { }
static let shared = NotificationHelper()
let unCenter = UNUserNotificationCenter.current()
}