使用通知机制在不同页面传送数据

在两个页面之间传送数据,可以使用通知机制实现.

例如, 点击页面A的按钮, 数据由页面A -- > 页面B , 操作步骤:

  1. 定义页面A按钮的点击事件:
@IBAction func save(_ sender: Any) {     
        self.dismiss(animated: true) { () -> Void in
            let dataDict = ["username" : "123"]
            //采用通知机制将dataDict传给页面B
            NotificationCenter.default.post(name: NSNotification.Name(rawValue: "RegisterCompletionNotification"), object: nil, userInfo: dataDict)
        }
    }
  1. 在页面B注册通知和回调方法:
import UIKit
class ViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        //注册通知 RegisterCompletionNotification
        NotificationCenter.default.addObserver(self, selector: #selector(ViewController.register(_:)), name: NSNotification.Name(rawValue: "RegisterCompletionNotification"), object: nil)
    }

    //定义回调方法
    func register(_ notification:Notification) {
        let theData = notification.userInfo!
        let username = theData["username"] as! String
        NSLog("username = %@", username)
    }

    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        NotificationCenter.default.removeObserver(self)
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值