欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iOS 添加长按手势

程序员文章站 2024-03-24 14:47:58
...

创建手势

    UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPress:)];
    ///设置长按手势最小按压时间
    longPress.minimumPressDuration = 2;
    [self.view addGestureRecognizer:longPress];

响应方法

- (void)longPress:(UIGestureRecognizer *)gesture
{
/// 在手势开始时进行相关操作
    if (gesture.state == UIGestureRecognizerStateBegan) {
        NSLog(@"在这里进行长按手势响应");
    }
}
相关标签: 手势 ios