美文网首页
长按手势-iOS

长按手势-iOS

作者: HAKA | 来源:发表于2017-01-06 10:30 被阅读103次
    UILongPressGestureRecognizer* longPressGr =          [[UILongPressGestureRecognizeralloc]initWithTarget:selfaction:@selector(longPressToDo:)];
    
    longPressGr.minimumPressDuration=3.0;
    
    [iconImagViewaddGestureRecognizer:longPressGr];
    
    #pragma mark长按手势
      -(void)longPressToDo:(UILongPressGestureRecognizer*)gesture
     {
    //直接return掉,不在开始的状态里面添加任何操作,则长按手势就会被少调用一次了
        if(gesture.state!=UIGestureRecognizerStateBegan)
        {
          return;
        }
    }

    相关文章

      网友评论

          本文标题:长按手势-iOS

          本文链接:https://www.haomeiwen.com/subject/nbmtbttx.html