potof
6/1/2013 - 5:12 AM

UIScrollViewに追加したUIImageViewのタッチイベントを取得する ref: http://qiita.com/items/1432c39dab083f770e59

UIScrollViewに追加したUIImageViewのタッチイベントを取得する ref: http://qiita.com/items/1432c39dab083f770e59

#import <UIKit/UIKit.h>

@interface UIScrollView (UIScrollView_TouchEvent)
@end
#import "UIScrollView+UIScrollView_TouchEvent.h"

@implementation UIScrollView (UIScrollView_TouchEvent)

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [[self nextResponder] touchesBegan:touches withEvent:event];
}

@end
#ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
    #import <CoreData/CoreData.h>
    #import "UIScrollView+UIScrollView_TouchEvent.h"
#endif