菜鸟教程小白 发表于 2022-12-13 02:54:20

ios - 如何在 iOS 的 UITableViewCell 右侧放置另一个 TextLabel


                                            <p><p>我想在 iOS 中的 <code>UITableViewCell</code> 右侧放置另一个单元格文本,如下图所示。</p>

<p> <img src="/image/Q4TGP.png" alt="enter image description here"/> </p>

<p>我该怎么做?</p>

<p>感谢您的帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>UITableViewCell 有一个属性,<code>detailTextLabel</code>,它对应于你要查询的文本标签。只需将文本分配给该标签</p>

<p>即</p>

<pre><code>cell.textLabel.text = @&#34;Google&#34;;
cell.detailTextLabel.text= @&#34;Yesterday&#34;;
</code></pre>

<p>小“箭头”是单元格上的附加 View </p>

<pre><code>cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 iOS 的 UITableViewCell 右侧放置另一个 TextLabel,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17218055/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17218055/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 iOS 的 UITableViewCell 右侧放置另一个 TextLabel