菜鸟教程小白 发表于 2022-12-13 13:34:26

iphone - 以编程方式将一些文本添加到 UITextView 中的特定区域?


                                            <p><p>我以编程方式创建 <code>UITextView</code> 的实例。我想以编程方式将一些文本添加到 <code>UITextView</code> 的特定区域。这是我创建 <code>UITextView</code> 的代码。</p>

<pre><code>      UITextView *textView =[init];
      textView.frame=CGRectMake(0,0,282,210);
      ;
      ;
</code></pre>

<p>例如,我想在特定区域 <code>CGRectMake(260,190,20,20)</code> 中添加一些文本。
然后将此文本添加到 <code>UITextView</code>。
以编程方式,请任何人指导我,怎么可能做到这一点?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以在那里添加一个 <code>UILabel</code>。</p>

<pre><code>UITextView *textView = [ init];
TextView.frame = CGRectMake(0.0,0.0,282.0,210.0);
;

UILabel *label = [ init];
label.frame = CGRectMake(260.0,190.0,20.0,20.0);
label.text = @&#34;T&#34;; //here you set the text you want...

;

;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 以编程方式将一些文本添加到 UITextView 中的特定区域?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10464657/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10464657/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 以编程方式将一些文本添加到 UITextView 中的特定区域?