GitXplorerGitXplorer
a

MultiDelegate

public
129 stars
18 forks
1 issues

Commits

List of commits on branch master.
Unverified
f778b91935ff0577cf398c1a1c2c681bd2f2a2a7

Iterate delegates using a copy

iiosjerryxiao committed 9 years ago
Unverified
e8f5b8e63cb3c250dda10195d18a8a4fbe70911a

Add build status badge to Readme.md

aalejandro-isaza committed 9 years ago
Unverified
b518f554d6b2f6e1eacfa0f3bc9da61e40801cf8

Upgrade project settings

committed 9 years ago
Unverified
6becbb14e30f4625085572e68abc26f94412249f

Merge pull request #7 from sgoehler/master

aalejandro-isaza committed 9 years ago
Unverified
eb1d7c4ad0864d5f0ad93205631bce8e332516b3

Added tvos as deployment target

ssgoehler committed 9 years ago
Unverified
30949e56dbab8f72abfc980e9626e74a37890e70

Update blog post link in README.md

aalejandro-isaza committed 10 years ago

README

The README file for this repository.

MultiDelegate

MultiDelegate is a delegate multiplexing class for Objective-C. In other words, it will dispatch delegate methods to multiple objects, instead of being restricted to a single delegate object. You can also use it as a generic method dispatch mechanism. For more information see the blog post.

Build Status

Example

Suppose you have a UITableView and you want to implement the data source using two separate classes: one is the actual data source implementing the tableView:numberOfRowsInSection: method and the other one is the cell factory implementing the tableView:cellForRowAtIndexPath: method to construct the cells.

First create an AIMultiDelegate instance. You need to keep a strong reference to this instance because most objects don't retain their delegates:

_multiDelegate = [[AIMultiDelegate alloc] init];

Then add all the actual delegates to the _multiDelegate object:

[_multiDelegate addDelegate:self];
[_multiDelegate addDelegate:_dataSource];

Finally set the table's data source as the delegate multiplexer:

self.tableView.dataSource = (id)_multiDelegate;

See the example project for the full source.

Remarks

Keep this in mind

  • Every method invocation will be forwarded to each object in the list in the order they were added.
  • If a method returns a value the return value will be from the last object that responded to the method. For example if object A implements method getInt by returning 1, object B implements getInt by returning 2 and object C doesn't implement getInt, calling getInt on an AIMultiDelegate containing A, B and C (in that order) will return 2.
  • AIMultiDelegate doesn't keep strong references to the objects added to it.
  • Some objects only call respondsToSelector: when you first set the delegate to improve performance, so make sure you add all your delegates to the AIMultiDelegate before you set it as the delegate.

Installation

If you are using CocoaPods, add this to your Podfile:

pod 'MultiDelegate'

Otherwise add AIMultiDelegate.h/.m to your project.