0

我目前正在努力使 touchesBegan 工作。

我目前有这个设置

[UIView(UIViewController) -> UIScrollView -> UIView[holderView] -> UILabels[]]

我以编程方式添加我的UILabels这种方式

//UIViewController method
UILabel *etiquetaCantidad = [[UILabel alloc] initWithFrame:CGRectMake(350, idx * 35, 50, 30)];
[etiquetaCantidad setTextAlignment:NSTextAlignmentCenter];
[etiquetaCantidad setBackgroundColor:[UIColor azulBase]];
[etiquetaCantidad setTextColor:[UIColor whiteColor]];
[etiquetaCantidad.layer setCornerRadius:5];
[etiquetaCantidad setText:@"0"];
[etiquetaCantidad setUserInteractionEnabled:YES];
[etiquetaCantidad setTag:idx + 100];
[holderView addSubview:etiquetaCantidad];

但是当我尝试

// UIViewController 
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{

    NSLog(@"Touch realizado: %@", touches);

}

它没有被触发,我在这里错过了什么???

4

1 回答 1

1

好吧,在解决了我的问题之后,问题是由我和我UIScrollView之间的UILabelUIViewController

所以我已经实现了一个类别,UIScrollView它可以将触摸传递给它的超级或nextResponder

#import "UIScrollView+TouchesBeganPropagable.h"

@implementation UIScrollView (TouchesBeganPropagable)

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{

    if(!self.dragging){
        [self.nextResponder touchesBegan:touches withEvent:event];
    }else{
        [super touchesBegan:touches withEvent:event];
    }
}

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{

    if (!self.dragging){
        [self.nextResponder touchesMoved: touches withEvent:event];
    }
    else{
        [super touchesMoved: touches withEvent: event];
    }
}

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{

    if (!self.dragging){
        [self.nextResponder touchesEnded: touches withEvent:event];
    }
    else{
        [super touchesEnded: touches withEvent: event];
    }
}

@end

这样,我可以在我UIViewController的身上使用 touchesXXXX 方法,UIView无论 anUIScrollView是否在中间

于 2013-11-08T22:16:24.880 回答