gpt4 book ai didi

ios - 推送通知时如何在 ViewController 上执行操作并检索其数据

转载 作者:行者123 更新时间:2023-11-28 07:42:42 27 4
gpt4 key购买 nike

我想知道如何在通知到达并且用户点击它时更改 ViewController 上的 UITextField 的值。通知包含我将放在该 UITextField 上的字符串。

This is how my app looks

我目前可以在 AppDelegate 上检索通知数据,并决定当用户点击通知时必须选择哪个选项卡。我是这样做的:

  func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
let userInfo = response.notification.request.content.userInfo
// Print message ID.
if let messageID = userInfo[gcmMessageIDKey] {
print("Message ID: \(messageID)")
}

// Print full message.
print(userInfo)

let fragmento = response.notification.request.content.userInfo["fragmento"] as? String //Keeps the notification String "Fragmento" on a local variable


if fragmento == "anuncios"{ // Condition to select tab

if let tabbarController = self.window!.rootViewController as? UITabBarController {
tabbarController.selectedViewController = tabbarController.viewControllers?[1]

}

} else if fragmento == "registro"{


if let tabbarController = self.window!.rootViewController as? UITabBarController {
tabbarController.selectedViewController = tabbarController.viewControllers?[0]


}

}


completionHandler()
}

我想知道的是将数据从通知传递到特定的选项卡栏 ViewController 并根据该数据更改 UITextField 的值,然后在该 TextField 更改其值时执行操作。

我希望我解释得很好,否则请问我任何问题。非常感谢

最佳答案

NotificationCenter 可能是您最简单的解决方案。定义一个自定义字符串用作 NotificationCenter 通知的通用名称,该通知将用于将信息从 AppDelegate 传递给正在收听的任何人。您可以附加字符串作为通知对象。

当您通过自定义类或 View Controller 实例化该标签时,将您的通知监听器添加到 NotificationCenter 并在收到通知后检索附加到通知的对象,仔细检查它的字符串,如果是,请使用它来更新您的标签。

例如,在 AppDelegate.swift 中:

static let conferenciaNotification = NSNotification.Name(rawValue: "conferenciaNotification")

...

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
let updatedTextFromReceivedPushNotification = "Hello world"
NotificationCenter.default.post(name: AppDelegate.conferenciaNotification, object: updatedTextFromReceivedPushNotification)
}

在带有标签的 View Controller 中:

override func viewDidLoad() {
super.viewDidLoad()
NotificationCenter.default.addObserver(forName: AppDelegate.conferenciaNotification, object: nil, queue: OperationQueue.main) { (conferenciaNotification) in
if let conferenciaText = conferenciaNotification.object as? String {
myTextLabel.text = conferenciaText
}
}
}

请注意,当您添加观察者时,您可能应该保留对从 NotificationCenter 返回的 NSObjectProtocol 的引用,这样您就可以在 View Controller 为 deinit() 时删除它。

关于ios - 推送通知时如何在 ViewController 上执行操作并检索其数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51792029/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com