当用户选择其中一个 tableView 单元格时,我有一个 tableView 导航到详细视图。这个主 TableView 是在 UITableViewController 类中创建的。(主视图控制器)
我使用 StoryBoard 创建主从表视图。
在 MasterViewController 中,当用户选择 To 按钮时,我在主 tableView 顶部放置了一个 tableView。第二个 tableView 允许用户从此列表中选择多个值。
为了防止第二个 tableView 在第一个(主)tableView 滚动时在屏幕上滚动,我将第二个 tableView 添加到MasterViewController 视图的superView中。([self.view.superview addSubview:_toView];)
因此,在 MasterViewController 中,我添加了一个 TableViewController (_toController)。我实例化一个 UIView (_toView),向它添加一个背景图像 (_toViewBG),然后向它添加一个 TableView (_toTableView)。然后,我将 _toView(包含第二个 tableView)添加到 MasterViewController 视图的父视图中。
_toController = [[ToTableViewController alloc] init];
_toView = [[UIView alloc] initWithFrame:CGRectMake(10,10,263,247)];
_toViewBG = [[UIImageView alloc] initWithFrame:CGRectMake(10,10,257,232)];
_toViewBG.image = [UIImage imageNamed:@"toViewBackground.png"];
[_toView addSubview:_toViewBG];
_toTableView = [[UITableView alloc] initWithFrame:CGRectMake(20,30,220,180) style:UITableViewStylePlain];
[_toTableView setDelegate:_toController];
[_toTableView setDataSource:_toController];
[_toView addSubview:_toTableView];
[self.view.superview addSubview:_toView];
[_toTableView reloadData];
当我滚动主 tableView 时,这种方法可以防止第二个 tableView 滚动。当主 tableView 滚动时,第二个 tableView 保持在顶部并就位。
如果我在主 TableView 中选择一个单元格,我会导航到详细视图。当我返回主 TableView 时,无法显示第二个 TableView (_toView)。
我不知道如何告诉 _toView 来到前面。我意识到它被添加到 MasterViewController 视图的超级视图中。从一些实验来看,这个超级视图似乎是一个 CALayer。
谁能建议我如何让这个 _toView 显示在 MasterViewController 视图的前面?
提前感谢您的任何帮助。
解决 了我最终只是将第二个表视图添加为 MasterViewController 视图的子视图。[self.view addSubview:_toView]; 然后,当我的第二个 tableview 可见时,我禁用了主 tableview 上的滚动。
Self.tableView.scrollEnabled = No;
似乎工作正常。
蒂姆