您的位置:首页 > 移动开发 > Objective-C

Communicate between objects

2013-02-28 20:30 141 查看
By Matthijs

When you have two objects A and B, says two view controllers, that you want to make talk to each other, you can choose from the following options:

NSNotifiationCenter.This is anonymous one-to-many communication. Objects A posts a notification to the NSNotificationCenter, which then distributes it to any other objects listening for that
notification, including Object B. A and B do not have to know anything about each other, so this is a very loose coupling.

KOV (Key-Value Observing).One object observes the properties of another. This is a very tight coupling, because Objects B is now peeking directly into Object A. The advantage of KVO is that
Object A doesn't have to be aware of this at all, and therefore does not need to send out any notifications -- the KVO mechanism takes care of this behind the scenes.

Direct Pointers.
Object A has a pointer to Object B and directly sends it messages when something of interest happens. This is the tightest coupling possible because A and B cannot function without each other. In the case of view controllers you generally want to avoid this.

Delegates. Object B is a delegate of Object A. In this scenario, Object A does not know anything about Object B. It just knows that some object performs the role of its delegate and it will
happily send messages to that delegate, but it doesn't know -- or care -- that this is Object B. The delegate pattern is often the preferred way to communicate between view controllers, but it takes some work to set up.

Blocks. Essentially the same approach as delegates, except that Object B now gives Object A one or more blocks(closures) to be executed when certain events take place. There is no formal delegates
protocol and the only thing that Object A sees of Object B is the blocks it is given.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐