我有两个UIButtons(我使用IB创建它们),它使用相同的IBAction连接到File的所有者,我如何定义哪个被按下?
答案 0 :(得分:26)
您的行动可以像这样实施:
- (IBAction) buttonTapped: (id) sender
// you can also replace id with UIButton*
然后在此方法中,您可以通过-isEqual:method
进行检查- (IBAction) buttonTapped: (id) sender
{
if ([sender isEqual:referenceToOneOfYourButtons]) {
// do something
}
else if ([sender isEqual:referenceToTheOtherButton]) {
...
}
}
或者,您可以设置不同的值来标记按钮的属性,然后:
- (IBAction) buttonTapped: (UIButton*) sender
{
const int firstButtonTag = 101;
const int otherButtonTag = 102;
if (sender.tag == firstButtonTag) {
...
}
else if (sender.tag == otherButtonTag) {
...
}
}
您需要在.xib或代码中设置此标记。
答案 1 :(得分:6)
沿着这些方向做某事......假设button1和button2在你的头文件中。
- (IBAction)buttonPressed:(UIButton *)button {
if (button == button1) {
} else if (button == button2) {
}
}
或者在Interface Builder中设置标签并检查标签。
- (IBAction)buttonPressed:(UIButton *)button {
if (button.tag == 1) {
} else if (button.tag == 2) {
}
}
标签不是从零开始的。使用1或更高。
答案 2 :(得分:0)
将您的操作声明为
- (IBAction)someAction:(id)sender;
当控件发送someAction消息时,它将自己作为sender参数发送。
e.g。
- (IBAction)someAction:(id)sender {
NSLog(@"sender: %@", sender);
}
现在您知道哪个控件发送了该消息。
答案 3 :(得分:0)
- (IBAction)myButtonAction:(id)sender {
if ([sender tag] == 0) {
// do something here
}
if ([sender tag] == 1) {
// Do some think here
}
}
//换句话说
- (IBAction)myButtonAction:(id)sender {
NSLog(@"Button Tag is : %i",[sender tag]);
switch ([sender tag]) {
case 0:
// Do some think here
break;
case 1:
// Do some think here
break;
default:
NSLog(@"Default Message here");
break;
}