uibutton selector将字符串作为参数发送

时间:2012-04-05 05:54:32

标签: iphone uibutton

我需要在UIButton选择器中发送一个字符串作为参数。采取全球字符串对我不起作用。按钮是自定义类型。我试过了:

btn.titleLabel.text = str;  

在选择器中访问它,但收到 nil

1 个答案:

答案 0 :(得分:0)

你得到这样的

[b addTarget:self action:@selector(buttonTap:)forControlEvents:UIControlEventTouchUpInside];

-(IBAction)buttonTap:(id)sender
{
    UIButton *b = (UIButton*)sender;
     NSLog(@"%@",b.titleLabel.text);
}