如何将 UISegmentedControl 放在 NavigationController 下?

2023-06-12移动开发问题
2

本文介绍了如何将 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 下?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

突出显示朗读文本(在 iPhone 的故事书类型应用程序中)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))...
2024-08-12 移动开发问题
9

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

正确的 cocos2d 场景重启?
Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)...
2024-08-12 移动开发问题
7

[ios.cocos2d+box2d]如何禁用自动旋转?
[ios.cocos2d+box2d]how to disable auto-rotation?([ios.cocos2d+box2d]如何禁用自动旋转?)...
2024-08-12 移动开发问题
7