本文介绍了在iPhone中获取按钮标记值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我动态制作了20个按钮,并且我得到了所有按钮的标记值。

I have made 20 Buttons dynamically, and I got the tag values of all Buttons.

但我需要知道如何使用该标记值。

But I need to know how to use that tag values.

我需要有关按下标签值的每个按钮的信息。

那么,我该如何使用这些标签值?

I need information on every button pressed with tag values.
So, how do I use those tag values?

推荐答案

你需要设置每个按钮的目标动作。

You need to set target-action of each button.

[button setTarget:self action:@selector(someMethod:) forControlEvents:UIControlEventTouchUpInside];

然后执行 someMethod:,如下所示:

- (void)someMethod:(UIButton *)sender {
    if (sender.tag == 1) {
        // do action for button with tag 1
    } else if (sender.tag == 2) {
        // do action for button with tag 2
    } // ... and so on
}

这篇关于在iPhone中获取按钮标记值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 06:13