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

Setting a UITableView#39;s contentInset through Storyboard in Xcode 6(在 Xcode 6 中通过 Storyboard 设置 UITableView 的 contentInset)
本文介绍了在 Xcode 6 中通过 Storyboard 设置 UITableView 的 contentInset的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

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

On Xcode 6, it seems that the ability to set the content inset of a scroll view/table view through UIStoryboard has been taken away. See image below:

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

the parameters on the left are from Xcode 6, whereas the parameters on the right are from Xcode 5

有谁知道参数是否已经移动,或者我们不再能够通过 UIStoryboard 设置内容插图?如果可能的话,我真的很想把它排除在我的代码之外..

Does anyone know if the parameters have moved, or are we no longer able to set the content inset through UIStoryboard? I'd really like to keep this out of my code if possible..

推荐答案

你可以通过使用 KVC 来做到这一点

You can do that by using KVC

  1. 选择表格视图
  2. 选择身份检查员
  3. 在用户定义的运行时属性"中按+"
  4. 将您的插图添加为 Rect {{10,15},{25,10}} 用于 KeyPath contentInset
  1. Select table view
  2. Choose Identity Inspector
  3. Press "+" in "User defined runtime attributes"
  4. Add your inset as a Rect {{10,15},{25,10}} for KeyPath contentInset

截图在这里:

这篇关于在 Xcode 6 中通过 Storyboard 设置 UITableView 的 contentInset的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to set scrollview content size in swift 3.0(如何在 swift 3.0 中设置滚动视图内容大小)
Stop a UITableView from automatically scrolling(阻止 UITableView 自动滚动)
iOS UIScrollView Lazy Loading(iOS UIScrollView 延迟加载)
using iOS 6.0 SDK and building for iOS 5 Target causes UIScrollView setMinimumZoomScale to fail when running on iOS 5 simulator(在 iOS 5 模拟器上运行时,使用 iOS 6.0 SDK 并为 iOS 5 Target 构建会导致 UIScrollView setMinimumZoomScale 失败) -
Create partial-screen UIPageViewController programmatically(以编程方式创建部分屏幕 UIPageViewController)
how to make an ImageView zoomable with or without ScrollView.?(如何使用或不使用 ScrollView 使 ImageView 可缩放?)