微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Swift: NotificationCenter 用法 --- swift3.0

//

// ViewController.swift

// TestNotify

// Created by huangtao on 2017/6/30.

// copyright © 2017 huangtao. All rights reserved.

// Swift 3.0


import UIKit


class ViewController: UIViewController {


@IBOutlet weak var btnSend: UIButton!

override func viewDidLoad() {

super.viewDidLoad()

btnSend.addTarget(self,action: #selector(btnSendFun(_:)),for: UIControlEvents.touchUpInside)

NotificationCenter.default.addobserver(self,selector: #selector(notifyFun(note:)),name: NSNotification.Name(rawValue:"test"),object: nil);

}

func notifyFun(note:Notification){

print(" note:\(note.object as! String)")

}


func btnSendFun(_ btn:UIButton) {

NotificationCenter.default.post(name: NSNotification.Name(rawValue:"test"),object: "111111");

}

deinit {

NotificationCenter.default.removeObserver(self);

}

override func didReceiveMemoryWarning() {

super.didReceiveMemoryWarning()

// dispose of any resources that can be recreated.

}



}

原文地址:https://www.jb51.cc/swift/321518.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐