菜鸟教程小白 发表于 2022-12-13 08:31:39

ios - 如何在 Objective-C 中更改 NSMutableAttributedString 的大小写?


                                            <p><p>我有一个 <code>NSMutableAttributedString</code> 包含小写字母的值。我需要将所有小写字母转换为大写。对于普通字符串,我们可以使用 <code>uppercaseString</code> 来解决这个问题:</p>

<pre><code>;
</code></pre>

<p>如何更改 <code>NSMutableAttributedString</code> 的大小写?谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>希望下面的代码片段可以帮助到你</p>

<pre><code>NSMutableAttributedString * linkString = [initWithString:@&#34;Google&#34;];

NSString * strings = [uppercaseString];

) withString:strings];

NSLog(@&#34;UpperCase   %@&#34;,linkString);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 Objective-C 中更改 NSMutableAttributedString 的大小写?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24676747/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24676747/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 Objective-C 中更改 NSMutableAttributedString 的大小写?