我正在尝试将第一个viewcontroller文本字段数据发送到第二个viewcontroller标签中。
在第一个控制器中,“内部发送操作”按钮添加了通知发布方法
@IBAction func sendtBtn(_ sender: Any) {
let secVc = storyboard?.instantiateViewController(withIdentifier: "SecondViewController") as! SecondViewController
self.navigationController?.pushViewController(secVc, animated: true)
NotificationCenter.default.post(name: Notification.Name( "notificationName"), object: nil, userInfo: ["text": firstTextField.text])
}
视图中的第二个viewcontroller addobserver方法didload
NotificationCenter.default.addObserver(self, selector: #selector(self.showMsg(_:)), name: Notification.Name( "notificationName"), object: nil)
选择器功能:
func showMsg(_ notification: Notification){
print("helloooo")
var vcData = notification.userInfo?["text"]
firstLabel.text = vcData as! String
}
在为添加观察者保留断点时,它是观察者,但不调用showMsg函数。 请在这段代码中帮助我。
答案 0 :(得分:1)
您这样做具有对第二个视图控制器的引用。 根本没有理由使用Notification
。如果只有一个接收者并且对象是相关的,则不要使用通知。
代码不起作用,因为发送通知时视图尚未加载。
忘记通知。而是在第二个视图控制器中创建属性,在sendtBtn
中分配值,并在viewDidLoad
中显示消息
@IBAction func sendtBtn(_ sender: Any) {
let secVc = storyboard?.instantiateViewController(withIdentifier: "SecondViewController") as! SecondViewController
secVc.message = firstTextField.text
self.navigationController?.pushViewController(secVc, animated: true)
}
第二个视图控制器
var message = ""
func viewDidLoad() {
super.viewDidLoad()
firstLabel.text = message
}