菜鸟教程小白 发表于 2022-12-12 17:52:09

ios - 将 UITableViewCell 中的文本大写


                                            <p><p>我目前正在开发的应用程序的设计者突然想将应用程序中每个表格 View 单元格中的文本大写。<br/>
在(几乎)每个 tableview 中,我使用了一个名为“NormalListCell”的自定义 <code>UITableViewCell</code>。 NormalListCell 有一个名为“mainLabel”的 <code>UILabel</code> 属性,这是我想要大写的属性。<br/>
一种方法是在任何地方都这样做:</p>

<pre><code>//Previously: cell.mailLabel.text = _someLowerCaseString;
cell.mailLabel.text = ]];
</code></pre>

<p>但这似乎是最糟糕的方法,因为我必须手动检查每个使用 NormalListCell 的文件。此外,无法保证设计不会再次更改。</p>

<p>KVO 似乎是一个不错的主意。</p>

<pre><code>- (void)awakeFromNib {
    ;
    ;
}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
    if (object == self.mainLabel) {
       uppercaseStringWithLocale:]];
    }
}
</code></pre>

<p>但这不起作用,因为我正在观察 'text' 属性并将其设置在 -observeValueForKeyPath: 中会再次调用此方法。</p>

<p>我可以停止观察,设置标签的文本,然后再次将 self 添加为观察者,但这似乎是一个非常老套的解决方案。</p>

<p>这是“正确”的解决方案吗?有没有更好的方法?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>一种更好的方法是创建一个自定义标签并将其添加到您的自定义单元格中。</p>

<ol>
<li>子类化 <code>UILabel</code></li>
<li>重写 <code>setText</code> 方法</li>
<li>将此自定义标签添加到 <code>NormalListCell</code></li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 UITableViewCell 中的文本大写,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20943806/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20943806/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 UITableViewCell 中的文本大写