swift设计模式--观察者模式

问题提出:model和controller通信的时候。如果是同步的controller 可以直接通过调用model得到数据。如果是异步的需要model 发送通知给controller
观察者模式主要有两个:通知(notification)和KVO(key-value-Observing)
model代码如下

let notificationName = "notificationName"
var count = 0
class Model {
    var data:[String] = []
    func getData(){

        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0)) { () -> Void in
            self.data.append(String(count++))
            //通知中心的几个参数:第一个是通知名称,第二个object:要传递的对象;第三个:userInfo:[NSObject:AnyObject]是要传递的字典
            NSNotificationCenter.defaultCenter().postNotificationName(notificationName, object: nil, userInfo: ["userName":self.data])
        }
    }
}

ViewController中:

class ViewController: UIViewController {
    var model = Model()
    @IBOutlet weak var label: UILabel!
    override func viewDidLoad() {
        super.viewDidLoad()
        //注册通知
        NSNotificationCenter.defaultCenter().addObserver(self, selector: Selector("getData:"), name: notificationName, object: nil)
    }
    //通知执行的方法
    func getData(notification:NSNotification){
        let userInfo = notification.userInfo
        let name = userInfo!["userName"] as! [String]
        //这点要注意,在xcode7中这个,在更新UI的时候必须放在主线程中不然会有
        // This application is modifying the autolayout engine from a background...   提示
        dispatch_async(dispatch_get_main_queue()) { () -> Void in
            self.label.text = name.joinWithSeparator(",")
        }
    }

    deinit{
        NSNotificationCenter.defaultCenter().removeObserver(self)
    }
    //按钮点击触发得到数据
    @IBAction func btnClicked(sender: AnyObject) {
        model.getData()
    }

}

//通知中心会在在应用的生命周期内投放不同的通知,很多控件也会在某些事件发生时投送通知:UITextField在不同的编辑过程中得通知:UITextFieldDidBeginEditingNotification、UITextFieldDidChangeNotification、UITextFieldDidEndEditingNotification

KVO:(不像通知中心通知所有观察者对象,而是对象属性变化时通知会直接发送给观察者对象)
swift 中要实现KVO的Model必须继承于NSObject.因为NSObject实现了NSKeyValueObserving协议。要检测的属性必须声明为dynamic类型。
Model:

class Model: NSObject {
    dynamic var date = NSDate()
    func loadDate(){
        date  = NSDate()
    }
}

ViewController:

private var myContext = 0
class ViewController: UIViewController {
    var myObject:Model!
    override func viewDidLoad() {
        super.viewDidLoad()
        myObject = Model()
        //为Model中得date属性添加观察者(swift 中得属性观察器willSet和didSet只能用于自己的类中,检测自己的类中的属性变化。如果你想通过inout的方式传递到其他类中,在其他类中如果属性变化会触发这个类中得willSet和didSet。那么你就会发现,你只要Inout传值,会立即触发willSet和didSet)
        myObject.addObserver(self, forKeyPath: "date", options: .New, context: &myContext)
    }
    //重写一个obeserveVauleForKeyPath类,这是通过context来定位的。
    override func observeValueForKeyPath(keyPath: String?, ofObject object: AnyObject?, change: [String : AnyObject]?, context: UnsafeMutablePointer<Void>) {
        if context == &myContext{
            //chage![NSKeyVauleChangeNewKey] 即是date变化后的值。
            print("日期发生变化\(change![NSKeyValueChangeNewKey])")
        }
    }
    @IBAction func btnClicked(sender: AnyObject) {
        myObject.loadDate()
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值