菜鸟教程小白 发表于 2022-12-13 16:52:10

iphone - 添加 subview 后,UITableViewCell contentView 框架大小会自动增加吗


                                            <p><p>添加 subview 后,UITableViewCell contentView 框架大小会自动增加吗?</p>

<p>假设你:</p>

<ul>
<li>向 UITableViewCell 内容 View 添加一些 subview (例如 UILabel)</li>
<li>然后使用 label.frame = CGRectMake(... 方法设置 UILabel 大小/位置</li>
<li>那么 UITableViewCell 的框架大小是否会自动更改以适应这一点 - 即,如果您使用 tableViewCell.contentView.frame.size.height,这应该是恰好适合 subview 所需的总高度吗?</li>
</ul></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我不这么认为......这似乎真的不合逻辑。您可以通过 UITableView 属性 rowHeight 或通过实现 UITableViewDelegate 方法为单元格设置框架高度</p>

<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 添加 subview 后,UITableViewCell contentView 框架大小会自动增加吗,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5304301/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5304301/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 添加 subview 后,UITableViewCell contentView 框架大小会自动增加吗