如何在导航栏中以编程方式添加下拉菜单?

时间:2012-07-12 07:25:46

标签: iphone objective-c ios

任何人都可以告诉。如何在iPhone中创建下拉菜单,我想在导航栏中添加下拉菜单(我的概念是排序(过滤)所以我想在菜单名称,标题,描述中有三个按钮.....) enter image description here

3 个答案:

答案 0 :(得分:1)

您可以在iPhone上使用UIPopoverController

可用here

在popover中,您可以添加UIPickerView,然后是下拉列表。 基本上,在iPhone上,您可以使用UITableViewUIPickerView来模拟下拉列表。 并将它放在一个漂亮的容器中,你可以使用上面提到的popover。

答案 1 :(得分:0)

iOS中没有这样的组件,因此您需要自己创建。 您可以通过在按钮下添加UIView并为其设置动画来实现。 有点像...

 [self.view addSubview:myMenu];
[myMenu setFrame:CGRectMake(100,30,150,0)];
[UIView animateWithDuration:0.4 animation:^{
    [myMenu setFrame:CGRectMake(100,30,150,200)];
}];

答案 2 :(得分:0)

 //on Drop down button click  
 -(IBAction)btnDropdownPressed:(id)sender{
if (![popoverController isPopoverVisible]) 
{
  PopOverViewController *attShow=[[PopOverViewController alloc]initWithNibName:@"PopOverViewController" bundle:nil];
    NSLog(@"arrFiles==%@",arrFiles);

    attShow.arrFiles=arrFiles;
  {
    popoverController=[[[UIPopoverController alloc]initWithContentViewController:attShow] retain];
    [popoverController setPopoverContentSize:CGSizeMake(500,250)];

    [popoverController presentPopoverFromRect:CGRectMake(0,0, 500, 30) inView:btnMore permittedArrowDirections:UIPopoverArrowDirectionDown animated:YES];

}else {
    [popoverController dismissPopoverAnimated:YES];
   }

}

PopOverViewController.h

  {
IBOutlet UITableView *tblView;
NSArray *arrFiles;
}
@property(nonatomic,retain)NSArray *arrFiles;

PopOverViewController.m

 - (NSInteger)tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger)section
   {
return [self.arrFiles count];
  }

 -(CGFloat)tableView:(UITableView *)aTableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
 {
return 40;
   }

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 {
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil)
{
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

cell.textLabel.text=[self.arrFiles objectAtIndex:indexPath.row];
cell.textLabel.font=[UIFont fontWithName:@"Arial" size:14.0f];
cell.selectionStyle=UITableViewCellSelectionStyleNone;

return cell;
}