菜鸟教程小白 发表于 2022-12-13 02:43:17

ios - 如何为 UI TableView 的 x 行定义和拉伸(stretch)行高?


                                            <p><p>我正在使用一个 UITableView,它只有并且永远只有 10 行中的值。我想设置 10 行的高度,这样无论使用什么设备,它都会填充 ViewController 。 </p>

<p>在 iPhone 4 上显示 10 行。 iPhone 5 12 排和 iPhone 7 14 排。如何设置行高,使其无论是什么设备都只显示 10 行?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试添加:</p>

<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return self.view.bounds.size.height/10.0;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何为 UITableView 的 x 行定义和拉伸(stretch)行高?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26435883/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26435883/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何为 UI TableView 的 x 行定义和拉伸(stretch)行高?