如何将 UISegmentedControl 放在 NavigationController 下?

How to put a UISegmentedControl under a NavigationController?(如何将 UISegmentedControl 放在 NavigationController 下?)

本文介绍了如何将 UISegmentedControl 放在 NavigationController 下?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道让 UISegmentedControl 出现在 navigationController 下方的最佳方法是什么,就像在 AppStore 应用程序中一样:

I was wondering what the best approach in order to have a UISegmentedControl appears just under the a navigationController just like in the AppStore application:

我要放在不同视图中的内容是 UITableView,就像 AppStore 应用一样.

The content I what to put in the different views are UITableView just like the AppStore app.

到目前为止我的想法是:

What I was thinking so far was:

  • 带有 UIToolbar 的 viewControllerUISegmentedController
  • 在这个 ViewController 中附加我的 UITableViews

但我想不通的是如何构造我的控制器源代码文件.

But what I can't figure out, is how to structure my controller source code files.

您有最佳实践、工作示例或至少是建议吗?

Do you have best practice, working examples or at least advices?

推荐答案

我会使用 UITableViewtableHeaderView 属性.这样它将与表格视图的内容一起滚动.

I would use UITableView's tableHeaderView property for that. That way it will scroll together with the table view's contents.

为了防止栏与表格内容一起滚动,我会将其设为兄弟视图(相对于 UITableView)并将其放置在表格视图的上方.如果您选择这种方法,您将拥有以下视图层次结构:控制器的视图包含工具栏和表格视图.请注意,您必须自己设置表格视图并在 -viewWillAppear: 中处理行取消选择,复制 UITableViewController 的功能.

To prevent the bar from scrolling together with the table content, I would make it a sibling view (relative to UITableView) and place it just above the table view. If you choose this approach you will have the following view hierarchy: controller's view holds the toolbar and the table view. Note that you will have to set up the table view and handle row deselection in -viewWillAppear: yourself, duplicating functionality of UITableViewController.

这篇关于如何将 UISegmentedControl 放在 NavigationController 下?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何将 UISegmentedControl 放在 NavigationController 下?