TableView数据覆盖导航栏

时间:2012-11-04 18:46:46

标签: iphone uitableview uinavigationcontroller

我在我的应用程序中使用StoryBoard,并且我在导航控制器中嵌入了tableviewcontroller。

enter image description here

当我没有将数据加载到tableview中时,导航栏会正确显示,但是当我将数据加载到tableview中时,导航栏会消失,tableview会扩展到整个屏幕。出现这种情况的原因是什么?

1 个答案:

答案 0 :(得分:0)

如果定义高标题部分会有帮助吗? :

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
    return 44.0;
}