导航表视图时添加到超级视图的视图消失
Posted
技术标签:
【中文标题】导航表视图时添加到超级视图的视图消失【英文标题】:View added to superview disappearing when navigating tableview 【发布时间】:2013-04-17 21:08:41 【问题描述】:当用户选择其中一个 tableView 单元格时,我有一个 tableView 导航到详细视图。这个主 TableView 是在 UITableViewController 类中创建的。 (MasterViewController)
我使用 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;
似乎工作正常。
提姆
【问题讨论】:
【参考方案1】:可以通过调用[self.view.superview bringSubviewToFront:_toView]
来完成这项工作,但我的建议是让MasterViewController
成为UIViewController
而不是UITableViewController
的子类,然后将两个UITableView
对象添加为根视图的子视图,(而不是引用superview
)。
【讨论】:
感谢您的反馈。我之前曾尝试过您的第一个建议,但没有成功。我希望在创建自定义单元格格式时将 MasterViewController 保留为 UITableViewController,添加 UIRefreshControl 以允许下拉刷新表格视图等。我认为更改为 UIViewController 将是相当多的工作。 工作量应该不大。您需要将一个名为 tableView 的 UITableView @property 添加到您的 UIViewController,并在您的 init 方法中初始化该属性。除此之外,一切都应该像以前一样工作。 谢谢。我会试一试,让你知道它是否有效。感谢您的帮助。以上是关于导航表视图时添加到超级视图的视图消失的主要内容,如果未能解决你的问题,请参考以下文章
iPad表格视图上的UISearchBar消失在导航控制器栏下方