Setting a UITableView#39;s contentInset through Storyboard in Xcode 6(在 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
- 选择表格视图
- 选择身份检查员
- 在用户定义的运行时属性"中按+"
- 将您的插图添加为 Rect {{10,15},{25,10}} 用于 KeyPath contentInset
- Select table view
- Choose Identity Inspector
- Press "+" in "User defined runtime attributes"
- Add your inset as a Rect {{10,15},{25,10}} for KeyPath contentInset
截图在这里:
这篇关于在 Xcode 6 中通过 Storyboard 设置 UITableView 的 contentInset的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Xcode 6 中通过 Storyboard 设置 UITableView 的 conte
基础教程推荐
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01