A simple proxy class that multiplexes and dispatches protocol methods to multiple objects.
AOMultiproxier is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "AOMultiproxier"
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;
Alessandro Orrù, [email protected], @alessandroorru on Twitter
AOMultiproxier is available under the MIT license. See the LICENSE file for more info.