ios - 如何在Objective C的 TableView 中垂直居中 TableView
<p><p>我的 Storyboard 中有表格 View 。所以让我们知道我将总共有 5 行。这 5 行不会垂直占用整个屏幕空间,所以我希望这 5 行的组在屏幕上垂直居中,而不是从顶部开始并在按钮上有所有空白空间,因为只有5 行。</p>
<p>我如何做到这一点 (1) 使用 Storyboard 或 (2) 使用代码?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你可以使用 UIScrollViews contentOffset-property,因为 UITableView 继承自 UIScrollView。这是文档的链接:<br/>
<a href="https://developer.apple.com/Library/ios/documentation/UIKit/Reference/UIScrollView_Class/Reference/UIScrollView.html#//apple_ref/occ/instp/UIScrollView/contentOffset" rel="noreferrer noopener nofollow">https://developer.apple.com/Library/ios/documentation/UIKit/Reference/UIScrollView_Class/Reference/UIScrollView.html#//apple_ref/occ/instp/UIScrollView/contentOffset</a> </p>
<p>基本上你只需设置一个点来定义 X 和 Y 偏移。因此,如果您希望 TableViews 内容从顶部偏移 100pts,您可以设置</p>
<pre><code>myTableView.contentOffset = CGPointMake(0, -100); //(edited in response to Lavvo's comment)
</code></pre>
<p>就是这样!</p>
<p>编辑:由于它是一个属性,因此您可以在 Interface Builder 中设置它,但我现在无法检查。如果是这样,我猜它可能在“尺寸”面板中。</p></p>
<p style="font-size: 20px;">关于ios - 如何在Objective C的 TableView 中垂直居中 TableView ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/23593990/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/23593990/
</a>
</p>
页:
[1]