.target和.action for UIButton的属性

时间:2013-07-03 00:00:54

标签: uibutton action uibarbuttonitem target

我正在尝试将按钮设置为一个动作但是在教程中我从信息中获取了使用UIBar按钮,我猜这会影响代码。这是我的代码任何帮助,使UIButton可以帮助很多。

 //The name of my button is sidebarButton
 // Set the side bar button action. When it's tapped, it'll show up the sidebar.
_sidebarButton.target = self.revealViewController;
_sidebarButton.action = @selector(revealToggle:);

问题是.target和.action,因为它说它不是UIButton的属性。 谢谢你提前。

1 个答案:

答案 0 :(得分:2)

使用它: -

  [_sidebarButton addTarget:self.revealViewController action:@selector(revealToggle:) forControlEvents:UIControlEventTouchUpInside]