菜鸟教程小白 发表于 2022-12-13 06:34:24

cocoa-touch - 如何制作可扩展的表格 View 单元格?


                                            <p><p>我想要一个表格 View 单元格,当您点击它时它会变高以显示一些描述文本。当您再次点击它时,它会切换回较低的版本。这可能吗,如果可以,我将如何实现?提前致谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>使用</p>

<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
</code></pre>

<p>--</p>

<p>在</p>

<pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
</code></pre>

<p>当用户点击一行时,在某处的数组中设置新的行高,然后调用 tableview reload 进行重绘。它将调用 cellForRowAtIndexPath 并且由于您知道哪个单元格的高度较大,因此您返回该行的较大单元格,heightForRowAtIndexPath 将确保它正确显示。</p></p>
                                   
                                                <p style="font-size: 20px;">关于cocoa-touch - 如何制作可扩展的表格 View 单元格?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5050534/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5050534/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: cocoa-touch - 如何制作可扩展的表格 View 单元格?