iOS按钮长按

UILongPressGestureRecognizer *longPressGR = 

                [[UILongPressGestureRecognizer alloc] initWithTarget:self 

                                                              action:@selector(handleLongPress:)];

                longPressGR.allowableMovement=NO;

                longPressGR.minimumPressDuration = 0.2;

                [btn addGestureRecognizer:longPressGR];

                [longPressGR release];

 //响应的事件

-(IBAction)handleLongPress:(id)sender{

    

        UIButton *button=(UIButton*)[(UILongPressGestureRecognizer *)sender view];

        NSInteger ttag=[button tag];

 

}

iOS按钮长按,布布扣,bubuko.com

iOS按钮长按

上一篇:Android:安卓资源引用符号的含义


下一篇:android 反编译(dex 和 odex),非脑残转帖,绝对可靠