我正在尝试在我的应用程序中创建一个弹出菜单,就像 facebook 应用程序使用的那样。
我发现了这个非常好的教程,并在他们的示例中使用了它。http://www.appcoda.com/ios-programming-sidebar-navigation-menu/
在他们的示例中,他们使用导航栏上的导航栏项目作为激活和停用弹出菜单的按钮。
在我当前的项目中,我不想使用导航栏,而是希望只有一个按钮来激活弹出菜单。
不过,当涉及到以下代码时,我不会做什么。
// Set the side bar button action. When it's tapped, it'll show up the sidebar.
_sidebarButton.target = self.revealViewController;
_sidebarButton.action = @selector(revealToggle:);
// Set the gesture
[self.view addGestureRecognizer:self.revealViewController.panGestureRecognizer];
我无法将操作和目标设置为普通按钮。
有什么简单的方法可以解决这个问题吗?
谢谢