我如何获得UIButton指针?

时间:2014-07-31 18:46:00

标签: ios objective-c uibutton

如何从我使用标签创建的按钮中获取UIButton指针?

int buttonTagIndex = button.tag;

1 个答案:

答案 0 :(得分:5)

这就是我在UIViewController中使用它来完成它。

UIButton *btn = (UIButton *) [self.view viewWithTag:index];