0

我正在尝试在我的应用程序中创建一个弹出菜单,就像 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];

我无法将操作和目标设置为普通按钮。

有什么简单的方法可以解决这个问题吗?

谢谢

4

2 回答 2

1

为什么不将此代码放在按钮操作中:

UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"Share" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Take Photo",@"Choose Existing", nil];
[actionSheet showInView:self.view];

此视图将从屏幕底部出现:

UIActionSheet

于 2013-08-04T19:12:24.020 回答
1

您可以设置 UIButton 来调用选择器,如下所示:

[button addTarget:self 
           action:@selector(revealToggle:)
 forControlEvents:UIControlEventTouchUpInside];
于 2013-08-04T19:50:06.183 回答