菜鸟教程小白 发表于 2022-12-12 18:25:52

ios - drawTextInRect : in UITextView class


                                            <p><p>我使用 UITextField 类中的 drawTextInRect: 方法来创建轮廓文本(带有黑色边框/存储效果的文本)。</p>

<p>但是我需要类似的东西来在 UITextView 中创建相同的轮廓文本,但是这里不包括 drawTextInRect: 方法。如何为 textView 执行此操作?</p>

<p>这是我在 UITextField 类中使用的代码:</p>

<pre><code>- (void)drawTextInRect:(CGRect)rect {
    CGContextRef c = UIGraphicsGetCurrentContext();
    CGContextSetLineWidth(c, 1);
    CGContextSetLineJoin(c, kCGLineJoinRound);

    CGContextSetTextDrawingMode(c, kCGTextFill);
    self.textColor = ;
    ;

    CGContextSetTextDrawingMode(c, kCGTextStroke);
    self.textColor = ;
    ;
}
</code></pre>

<p>如何在 UITextView 类中为 textView 创建类似的解决方案?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的目标是 iOS 6.0+ 吗?
像这样的东西应该可以工作,也许:</p>

<pre><code>      NSAttributedString *yourString = [ initWithString:@&#34;Your text&#34; attributes:@{
                                          NSStrokeColorAttributeName:,
                                          NSStrokeWidthAttributeName:,
                                          NSFontAttributeName:
                                          }];
      yourTextField.attributedText = yourString;
</code></pre>

<p>享受</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - drawTextInRect : in UITextView class,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21485071/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21485071/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - drawTextInRect : in UITextView class