以编程方式更改表的帧大小

时间:2015-04-27 04:46:06

标签: iphone json uitableview ios8 xcode6.3

我想在https://github.com/kingiol/XCMultiSortTableView上做例子  我在哪里放json值。我使用了导航栏,但随后标题数据被隐藏了。我尝试在XCMultiSortTableView.m文件中更改帧大小,但标题的位置不会改变。我正在输出

enter image description here

但是我希望显示年份的输出和导航栏一样

enter image description here

请回复。

1 个答案:

答案 0 :(得分:1)

我将topHeaderScrollView更改为

topHeaderScrollView.frame = CGRectMake(leftHeaderWidth + boldSeperatorLineWidth, 30, superWidth - leftHeaderWidth - boldSeperatorLineWidth, topHeaderHeight);

并将默认标题高度更改为

#define XCMultiTableView_DefaultTopHeaderHeight 110.0f

现在即使我有导航栏,我也可以查看我的标题。