菜鸟教程小白 发表于 2022-12-13 16:44:45

objective-c - 将 NSString 转换为 NSAttribtuedString 以进行绘图


                                            <p><p>我有一个正在用代码绘制的字符串</p>

<p><code>[@"-"drawInRect: r
                带字体:f2
         lineBreakMode: UILineBreakModeWordWrap
               对齐:UITextAlignmentCenter];</code></p>

<p>但是我想改变这个字符串中的颜色,因为这对于 NSString 是不可能的,我希望将它修改为一个 NSAttributedString。</p>

<p>但这不起作用,这是我修改后的代码,我也找不到其他参数的属性</p>

<pre><code>NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:f2,NSFontAttributeName,
                                        nil];

    NSAttributedString *drawingString = [initWithString:@&#34;-&#34; attributes:attrsDictionary];

    ;
</code></pre>

<p>感谢任何帮助,无论这是否是正确的方法。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>谢谢!这是我最终编辑的代码</p>

<pre><code>    NSMutableParagraphStyle *paraAttr = [ mutableCopy];
    ;
    ;


    NSDictionary *attrsDictionary = [NSDictionary dictionaryWithObjectsAndKeys:f2,NSFontAttributeName,
                                        ,NSForegroundColorAttributeName,
                                        paraAttr,NSParagraphStyleAttributeName,
                                       nil];


    NSAttributedString *drawingString = [initWithString:@&#34;•&#34; attributes:attrsDictionary];


    ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 将 NSString 转换为 NSAttribtuedString 以进行绘图,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12726423/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12726423/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 将 NSString 转换为 NSAttribtuedString 以进行绘图