在UIButton保持按下时添加额外的图像

时间:2011-11-23 11:54:53

标签: iphone ios uibutton

我想在按下按钮时添加额外的图像。 在iphone中有可能吗?

3 个答案:

答案 0 :(得分:0)

我想你的意思是当用户长按电池时(轻按并保持手指向下)? 您可以在按钮中添加UILongPressGestureRecognizer元素,并指定其目标和操作,如下所示:

UILongPressGestureRecognizer *longPressRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPress:)];
[self.button addGestureRecognizer:longPressRecognizer];
[longPressRecognizer release];

当用户长按按钮时,这将调用-longPress:方法。回调函数可能如下所示:

- (void)longPress:(UILongPressGestureRecognizer *)recognizer{
    if (recognizer.state == UIGestureRecognizerStateBegan){
        // do something like add an image
    }
}

希望这有帮助!

答案 1 :(得分:0)

当然是的,

首先拍摄自定义按钮并为其设置任何图像。

然后用按钮的触摸按下事件绑定以下方法。

-(IBAction)buttonTouchedImage:(id)sender
{
    [yourButton setImage:[UIImage imageNamed:@"selected.png"] forState:UIControlStateHighlighted];
}

答案 2 :(得分:0)

设置按钮高亮显示的图像,并在按下按钮时突出显示= YES。这应该可以解决。