美文网首页
delegate & notification

delegate & notification

作者: March_Cullen | 来源:发表于2017-03-03 17:15 被阅读0次
  • 1.delegate ,one-to-one ,并且 receiver 可以返回值给sender
    delegate用于 sender 希望接收到 receiver 的某个返回值

  • 2.notification ,one-to-one/many/none , receiver 无法返回值给 sender
    notification用于通知多个object某个事件


如有不当、错误之处,欢迎指正!

相关文章

  • NSNotification、delegate和KVO的区别

    效率肯定是delegate比nsnotification高。 delegate方法比notification更加直...

  • delegate & notification

    1.delegate ,one-to-one ,并且 receiver 可以返回值给senderdelegate用...

  • Notification、Delegate

    一、Notification(通知)1、一对多的传递方式,使用观察者模式来实现的用于跨层传递信息的机制。NSNot...

  • iOS (2)

    69.什么时候用delegate,什么时候用Notification? 答: delegate针对one-to-o...

  • iOS经典面试题

    1、什么时候用delegate,什么时候用Notification? Delegate(委托模式):1对1的反向消...

  • Delegate、Block、Notification

    对比 Delegate(委托/代理)优点:1.同一个协议,一个对象只能同时设置一个代理,单例一般不用代理;2.相对...

  • Delegate,Notification,Block

    参考:http://www.ithao123.cn/content-8349585.html 1.Delegate...

  • 知识点6

    25. 什么时候用delegate,什么时候用Notification? 1、Delegate是一种点对点的消息传...

  • 面试目录

    一面: 设计模式 Notification、Delegate KVO、KVC block NSThread、GCD...

  • [iOS]基于ResponseChain的交互方式

    使用背景 iOS中的交互方式有:delegate,block,target-action,notification...

网友评论

      本文标题:delegate & notification

      本文链接:https://www.haomeiwen.com/subject/xtyrgttx.html