UILongPressGestureRecognizer

-(void)initGR{
    UILongPressGestureRecognizer *longPressGR = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)];
    longPressGR.minimumPressDuration = 0.7;
    [self addGestureRecognizer:longPressGR];
}
-(void)handleLongPress:(UILongPressGestureRecognizer *)recognize{
    
}
相关文章
相关标签/搜索