iOS - 在导航栏下添加视图

时间:2014-03-07 14:04:19

标签: ios iphone uinavigationcontroller uinavigationbar

我无法在UINavigationBar(导航控制器)下添加视图,就像Facebook应用一样。关于如何做到这一点的任何想法?

enter image description here

最佳, 安德烈

1 个答案:

答案 0 :(得分:1)

自定义视图看起来像tableHeaderView。这意味着您需要将视图设置为tableHeaderView,然后将其放置在tableView的顶部并位于导航栏下方。

UIView *customView = [[UIView alloc] initWithFrame:yourFrame];
self.tableView.tableHeaderView = customView;