菜鸟教程小白 发表于 2022-12-12 20:01:51

ios - 将 NSDictionary 中的所有内容放入 UITextView


                                            <p><p>我有一个 <code>NSDictionary</code>,我想将它打印到 <code>UITextView</code>。</p>

<p>我尝试使用此代码,但是当我尝试将其放入 <code>UITextView</code> 时,它只会得到一行文本,而当我 <code>NSLog</code> 时,它可以完美运行。</p>

<pre><code>for(int i=0; i&lt;;i++) {
    dictionary = ;
    //that shows only one line from the dictionary in the textview
    textview.text = ;

    //that shows all the dictionary with key &#34;text&#34; in the log
    NSLog(@&#34;%@&#34;, );
}
</code></pre>

<p>有没有办法解决这个问题?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您应该将其附加到现有文本中</p>

<pre><code>textview.text = @&#34;&#34;;

for(int i=0; i&lt;;i++)
{
      dictionary= ;
      //that shows only one line from the dictionary in the textview
      textview.text = ]];

      //that shows all the dictionary with key &#34;text&#34; in the log
      NSLog(@&#34;%@&#34;,);
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 NSDictionary 中的所有内容放入 UITextView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22356595/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22356595/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 NSDictionary 中的所有内容放入 UITextView