无法从通知获取变量?

时间:2019-03-25 03:49:56

标签: xcode swift4 appdelegate

我要编写一个具有通知的项目,该通知可以打印存储在主viewcontroller中的数据,但是当触发通知时,总是获取空数据。

在ViewController中

arrPerson = [String]()

override func viewDidLoad() {
    super.viewDidLoad()

    arrPerson.append("Peter")
    arrPerson.append("Jack")

setNotification()
}

func printTheName() {
    print("In printTheName")
    print("arrPerson:\(arrPerson.count)")
    for x in arrPerson {
        print(x)
    }
}

func setNotification() {

    let notification = UNMutableNotificationContent()
    notification.title = "title"
    notification.subtitle = ""
    notification.body = "body"
    notification.sound = UNNotificationSound.default()

    let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 60, repeats: true)

    let request = UNNotificationRequest(identifier: "check", content: notification, trigger: trigger)

    let notificationCenter = UNUserNotificationCenter.current()
    notificationCenter.add(request) { (error) in
        if error != nil {
            print("notificationCenter.add ERROR:\(error)")
            // Handle any errors.
        }
    }
}

在Appdelegate中

func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
    print("In userNotificationCenter")
    ViewController().printTheName()
}

该代码将打印出“ userNotificationCenter”,“在printTheName”,“ arrPerson:0”。

我需要从通知中获取数据。为什么从通知中调用printTheName时arrPerson.count为0?

1 个答案:

答案 0 :(得分:0)

尝试使用appdelegate中的窗口以编程方式实例化viewController。 您将可以在通知中心获取计数。或者由于viewController类是登录屏幕,因此请在主类中而不是在此处调用userNotifationCenter方法。