I'm using a custom subclass of UIScrollView called ImageScrollView. I need to know when the user taps the scroll view, so I created a protocol. I implement the protocol in my RootViewController and everything looks ok. When I build it, theres a warning
Class 'ImageScrollView' does not implement the 'TapDetectingImageViewDelegate' protocol".
After inspecting the init method in the ImageScrollView class, I see that self.delegate = self; is causing the problem. I declare myself the delegate for the UIScrollView delegate methods, but I also am the delegate for my own protocol (Delegate for my protocol must be RootViewController, not ImageScrollView).
- (id)initWithFrame:(CGRect)frame{
if ((self = [super initWithFrame:frame])) {
self.showsVerticalScrollIndicator = NO;
self.showsHorizontalScrollIndicator = NO;
self.bouncesZoom = YES;
self.decelerationRate = UIScrollViewDecelerationRateFast;
self.delegate = self;
}
return self;
}
Do you guys know how can I solve that? Or a better idea to tell my RootViewController that user has tapped the UIScrollView/UIImage.
Declaration of protocol in ImageScrollView.h
@protocol TapDetectingImageViewDelegate <NSObject>
@optional
- (void)tapDetectingImageView:(ImageScrollView *)view gotSingleTapAtPoint:(CGPoint)tapPoint;
@end
Header file of class that implements it
#import <UIKit/UIKit.h>
#import "ImageScrollView.h"
@interface AppleScrollViewViewController : UIViewController <UIScrollViewDelegate, TapDetectingImageViewDelegate>{
UIScrollView *pagingScrollView;
}
-(void)configurePage:(ImageScrollView *)page forIndex:(NSUInteger)index;
- (CGRect)frameForPageAtIndex:(NSUInteger)index;
- (CGRect)frameForPagingScrollView;
- (UIImage *)imageAtIndex:(NSUInteger)index;
- (NSString *)imageNameAtIndex:(NSUInteger)index;
- (CGSize)imageSizeAtIndex:(NSUInteger)index;
- (NSArray *)imageData;
@end
Protocol method in .m class that implements it
-(void)tapDetectingImageView:(ImageScrollView *)view gotSingleTapAtPoint:(CGPoint)tapPoint{
NSLog(@"SingleTap");
}