如何找到ios中按钮阵列上按下的按钮

时间:2011-11-16 06:57:39

标签: ios ios4 ios5 ios-4.2

我有一系列按钮,我希望每个按钮上的文字都显示在标签上..所以朋友们,请告诉我怎样才能实现这个目标

此致 兰吉特

1 个答案:

答案 0 :(得分:0)

只需以这种方式添加按钮

Button.tag = i
[Button addTarget:self action:@selector(MenuDetail:) forControlEvents:UIControlEventTouchUpInside];
[listOfButtons addObject:Button];

并按照以下方式处理补缺事件

-(IBAction)MenuDetail:(id)sender
{   
    UIButton *temp= (UIButton *)sender;
    NSInteger parentValue=temp.tag;
    clsMenuItem *tempMenu=[appDelegate searchMenu:parentValue];
    if(parentValue==1)
    {
            // do something
    }
    else if(parentValue==1)
    {
        // do something
    }
}

希望这会有所帮助