1

我正在尝试将按钮设置为一个动作,但是在本教程中,我使用 UIBarbutton 获得了信息,我猜这会影响代码。这是我的代码,任何使 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 的属性。先谢谢了。

4

1 回答 1

2

用这个 :-

  [_sidebarButton addTarget:self.revealViewController action:@selector(revealToggle:) forControlEvents:UIControlEventTouchUpInside]
于 2013-07-08T04:29:20.107 回答