在Xcode 6中通过Storyboard设置UITableView的contentInset

时间:2014-08-08 16:23:31

标签: ios uitableview uiscrollview uistoryboard xcode6

在Xcode 6上,似乎已经删除了通过UIStoryboard设置滚动视图/表视图的内容插入的功能。见下图:

on the image

左边的参数来自Xcode 6,而右边的参数来自Xcode 5

有人知道参数是否已移动,或者我们是否无法通过UIStoryboard设置内容插入?如果可能的话,我真的想保留我的代码..

1 个答案:

答案 0 :(得分:16)

您可以使用KVC

来实现
  1. 选择表格视图
  2. 选择Identity Inspector
  3. 按" +" in"用户定义的运行时属性"
  4. 将您的插图添加为Rect {{10,15},{25,10}} ,用于KeyPath contentInset
  5. 屏幕截图:

    enter image description here