Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 1.21 KB

README.md

File metadata and controls

36 lines (20 loc) · 1.21 KB

AOMultiproxier

Version License Platform

A simple proxy class that multiplexes and dispatches protocol methods to multiple objects.

Installation

AOMultiproxier is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "AOMultiproxier"

Example

In your header:

@property (nonatomic, strong) UIScrollView * scrollView;
@property (nonatomic, strong) AOMultiproxier <UIScrollViewDelegate> scrollViewDelegateProxy;

In your init:

self.scrollViewDelegateProxy = AOMultiproxierForProtocol(UIScrollViewDelegate, aScrollViewDelegate, anotherScrollViewDelegate);

self.scrollView.delegate = self.scrollViewDelegateProxy;

Author

Alessandro Orrù, [email protected], @alessandroorru on Twitter

License

AOMultiproxier is available under the MIT license. See the LICENSE file for more info.