我有一个带有 UIScrollView 的 UIView,我想捕捉事件的触摸,但我不能。不涉及以下任何方法。问题是什么?
- (void) touchesEnded: (NSSet *) toca withEvent: (UIEvent *) evento
{
NSLog (@ "touchesEnded");
}
- (void) touchesBegan: (NSSet *) toca withEvent: (UIEvent *) evento
{
NSLog (@ "touchesBegan");
}
- (Void) touchesMoved: (NSSet *) toca withEvent: (UIEvent *) evento
{
NSLog (@ "touchesMoved");
}
标题##
谢谢你