0

I'm wondering how one goes about implementing something like the following:

enter image description here

The grey bar underneath the navigation bar that contains 2 buttons, 'Expense' and 'Income'. Can anyone point me to a resource or explain how you implement something like this?

4

3 回答 3

1

似乎第二个栏是一个工具栏。只需在导航栏下方放置一个工具栏。您面临哪些问题?

于 2012-06-07T16:23:09.610 回答
0

从这个布局,我对实现的猜测是:

  • 顶层:UITabViewController
  • 选定选项卡:(MyHistoryViewController子类UIViewController- 或可能是UITableViewController- 放置在 a 内UINavigationController
  • MyHistoryViewController可以在 Interface Builder(这些天构建到 Xcode 中)中UIToolbar使用 a UISegmentedControl(或您的自定义工具栏,看起来像上面那样)在 a 上方进行布局UITableView

View Controller Programming Guide是一个有用的资源。

于 2012-06-07T16:31:20.350 回答
0

您可以在位于导航栏下方的工具栏 (UIToolbar) 中使用分段控件 (UISegmentedControl)。

于 2012-06-07T16:22:44.627 回答