在我的 xib 中,我采用了 4 个 UI 按钮,分别命名为按钮 1、2、3 和 4。这四个按钮连接了两个执行不同功能的四个不同 IBAction 方法。
现在我多了一个名为“Save”的按钮,这也有不同的 IBAction 方法。
- (IBAction)Save:(id)sender
{
}
现在在这里我想检查上面 4 个 UIButton 中的哪一个被点击了。
为此,我尝试以这种方式检查
- (IBAction)Save:(id)sender
{
if(sender == button1)
{
//Do this
}
else if (sender == button2)
{
//Do this
}
}
但这不起作用。我做错了。请帮帮我
问候兰吉特。