UIButton具有按住操作和释放操作 [英] UIButton with hold down action and release action

查看:115
本文介绍了UIButton具有按住操作和释放操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想创建一个可以按下的UIButton,当按下它时会调用hold down动作一次。
发布后,调用hold was release动作。

I want to create a UIButton that can be held down, when held down it calls the "hold down" action once. when it is released, calls the "hold was release" action.

此代码无法正常工作,因为触摸可以在按钮内移动事件未按正确顺序触发

This code isn't working correctly because the touch can move inside the button and the events aren't triggered in correct order

[button handleControlEvent:UIControlEventTouchDown withBlock:^{
        [self performMomentaryAction:PXActionTypeTouchDown];
    }];
[button handleControlEvent:UIControlEventTouchUpInside withBlock:^{
        [self performMomentaryAction:PXActionTypeTouchUp];
    }];

句柄控制事件基于UIBUtton +块实现

handle control events is based on UIBUtton+block implementation

推荐答案

试试这个

  UIButton *aButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
  aButton.frame = CGRectMake(xValue, yValue, 45, 45);
  [aButton addTarget:self action:@selector(holdDown) forControlEvents:UIControlEventTouchDown];
  [aButton addTarget:self action:@selector(holdRelease) forControlEvents:UIControlEventTouchUpInside];


 - (void)holdDown
  {
     NSLog(@"hold Down");
  }

  - (void)holdRelease
  {
      NSLog(@"hold release");

  }

:你可以使用 UIControlEventTouchUpOutside 如果用户长按按钮,一段时间后,用户不会松开手指,而是将手指移出按钮边界。再添加一个事件。

for NSPratik's case: u can use the event UIControlEventTouchUpOutside If user long press button and after some time, instead of releasing the finger, user will move his/her finger out of the bounds of button. just add one more event.

  UIButton *aButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
  aButton.frame = CGRectMake(xValue, yValue, 45, 45);
  [aButton addTarget:self action:@selector(holdDown) forControlEvents:UIControlEventTouchDown];
  [aButton addTarget:self action:@selector(holdRelease) forControlEvents:UIControlEventTouchUpInside];
  [aButton addTarget:self action:@selector(holdReleaseOutSide) forControlEvents:UIControlEventTouchUpOutside]; //add this for your case releasing the finger out side of the button's frame

 //add this method along with other methods 
  - (void)holdReleaseOutSide
  {
     NSLog(@"hold release out side");
  }

Swift版本

    var  aButton:UIButton = UIButton.buttonWithType(UIButtonType.Custom) as UIButton
    aButton.frame = CGRectMake(xValue,yValue, 45, 45)
    aButton.setTitle("aButton", forState: UIControlState.Normal)
    aButton.backgroundColor = UIColor.greenColor()
    aButton.addTarget(self, action: Selector("holdRelease:"), forControlEvents: UIControlEvents.TouchUpInside);
    aButton.addTarget(self, action: Selector("HoldDown:"), forControlEvents: UIControlEvents.TouchDown)
    self.addSubview(aButton)

    //target functions   
    func HoldDown(sender:UIButton)
    {
       print("hold down")
    }

    func holdRelease(sender:UIButton)
    {
       print("hold release")
    }

这篇关于UIButton具有按住操作和释放操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆