关于ios:导航tableview时添加到superview的View消失
View added to superview disappearing when navigating tableview
当用户选择其中一个 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 视图的父视图中。
|
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
_toController = [[ToTableViewController alloc] init];
_toView = [[UIView alloc] initWithFrame:CGRectMake(10,10,263,247)]; _toViewBG = [[UIImageView alloc] initWithFrame:CGRectMake(10,10,257,232)]; [_toView addSubview:_toViewBG]; _toTableView = [[UITableView alloc] initWithFrame:CGRectMake(20,30,220,180) style:UITableViewStylePlain]; [_toTableView setDelegate:_toController]; [self.view.superview addSubview:_toView]; |
当我滚动主 tableView 时,这种方法可以防止第二个 tableView 滚动。当主 tableView 滚动时,第二个 tableView 保持在顶部并就位。
如果我在主 TableView 中选择一个单元格,我会导航到详细视图。当我返回主 TableView 时,无法显示第二个 TableView (_toView)。
我不知道如何告诉 _toView 到前面。我意识到它被添加到 MasterViewController 视图的超级视图中。从一些实验来看,这个超级视图似乎是一个 CALayer。
谁能建议我如何让这个 _toView 显示在 MasterViewController 视图的前面?
提前感谢您的帮助。
解决了
我最终只是将第二个表视图添加为 MasterViewController 视图的子视图。
[self.view addSubview:_toView];
然后,当我的第二个 tableview 可见时,我禁用了主 tableview 上的滚动。
|
1
|
Self.tableView.scrollEnabled = No;
|
似乎工作正常。
蒂姆
可以通过调用 [self.view.superview bringSubviewToFront:_toView] 来完成这项工作,但我的建议是让 MasterViewController 成为 UIViewController 而不是 UITableViewController 的子类,然后将两个 UITableView 对象添加为根视图的子视图,(而不是参考 superview)。
相关讨论
- 感谢您的反馈。我之前曾尝试过您的第一个建议,但没有成功。我希望在创建自定义单元格格式时将 MasterViewController 保留为 UITableViewController,添加 UIRefreshControl 以允许下拉刷新表格视图等。我认为更改为 UIViewController 将是相当多的工作。
- 它不应该做那么多工作。您需要将一个名为 tableView 的 UITableView @property 添加到您的 UIViewController,并在您的 init 方法中初始化该属性。除此之外,一切都应该像以前一样工作。
- 谢谢。我会试一试,让你知道它是否有效。感谢帮助。