什么是上拉菜单的用户界面类?

我想知道是否有一个特定的UI类,可以让用户做出select,比如Safari上的“更多”button或确认iDeviceclosures的界面。 两个看起来像UIToolBars,但他们似乎被渲染得很好(button和工具栏的背景),我开始怀疑它是一个单独的类,专门为这种滑出select。

或者他们实际上是不同的UIViews与devise的背景,使用animateWithDuration滑动:animation:背景是一个半透明的面具? 苹果是怎么做到的?

UIActionSheet。 这里是代码:

UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"Share" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"E-Mail",@"SMS", nil]; [actionSheet showInView:self.view]; 

我认为你正在寻找的是一个行动表

在这里输入图像说明

你的意思是UIActionSheet ? 如果是这样,那么它是在UIView下的一个单独的类!

UIActionSheet