我需要在UIButton
选择器中发送一个字符串作为参数。采取全球字符串对我不起作用。按钮是自定义类型。我试过了:
btn.titleLabel.text = str;
在选择器中访问它,但收到 nil 。
答案 0 :(得分:0)
你得到这样的
[b addTarget:self action:@selector(buttonTap:)forControlEvents:UIControlEventTouchUpInside];
-(IBAction)buttonTap:(id)sender
{
UIButton *b = (UIButton*)sender;
NSLog(@"%@",b.titleLabel.text);
}