增加Table View标题和故事板上单元格之间的空间

时间:2014-01-28 16:20:44

标签: ios uitableview ios7

我正在将我的应用程序迁移到iOS 7,我注意到Table View标题和单元格之间的空间很小。

  • 我认为这是iOS 7的正常行为吗?右。
  • 之前我看起来更好了,是否可以增加使用storyboared设计的静态UITableView的空间。

2 个答案:

答案 0 :(得分:1)

  

我认为iOS 7的这种正常行为?右。

这是正常行为。

  

是否存在增加静态UITableView设计使用的空间   故事板?

enter image description here

在StoryBoard中选择tableview,然后更改Attributes Inspector下的值。

答案 1 :(得分:0)

对于所有未找到@Virus答案有用的人,如果你有动态标题高度的部分,请按照此方法

//This method returns the height of a header at a specific section
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    //For example you define heights for these sections
    switch (section)
    {
        case 0:
            return 12.0f;
            break;

        case 1:
            return 23.0f;
            break;

        case 2:
            return 56.0f;
            break;

        case 3:
            return 33.0f;
            break;


        default:
            return 25.0f;
            break;
    }
}

希望有所帮助