0

我喜欢给 UIPopoverController 添加标题和按钮。使用我当前的代码

- (IBAction)listOfDocumnetsInSections:(id)sender {

UIViewController *listViewController = [[UIViewController alloc] init];
self.lsitOfDocument = [[UITableView alloc] initWithFrame:CGRectMake(0, 10, 300, [self countRecordsInEntity] * 43) style:UITableViewStylePlain];
self.lsitOfDocument.dataSource = self;
self.lsitOfDocument.delegate = self;

[listViewController.view addSubview:self.lsitOfDocument];
self.listOfSectionsPopOver = [[UIPopoverController alloc] initWithContentViewController:listViewController];

[self.listOfSectionsPopOver setPopoverContentSize:CGSizeMake(300, [self countRecordsInEntity] * 43)];
[self.listOfSectionsPopOver presentPopoverFromRect:CGRectMake(700, 35, 10, 10)
                                            inView:self.view permittedArrowDirections:UIPopoverArrowDirectionAny
                                          animated:YES];}

看起来像

在此处输入图像描述

但我喜欢像下面这样改变用户界面

在此处输入图像描述

有什么建议吗?

4

1 回答 1

1

几个选项:

  1. 在视图顶部添加一个 UIToolbar
  2. 为您的 UITableView 创建一个包含 UIToolbar 的节标题

UIToolbar 将包含标签和按钮

于 2012-09-17T19:53:13.920 回答