菜鸟教程小白 发表于 2022-12-13 15:59:07

ios - 通过 UISlider 更改 UITextView 的字体大小


                                            <p><p>我需要根据<code>UISlider</code>的值改变<code>UITextView</code>的字体大小。 </p>

<p>写在<code>viewDidLoad()</code></p>

<p><code>tvVarse.text=strTextToShow;//tvVarse是UITextViewOutlet,strTextToShow是要在textView上显示的文本</code> </p>

<p>已检查:</p>

<ol>
<li><code>UITextView</code> 和 <code>UISlider</code> 的 Outlet 都已连接。</li>
<li><code>UITextVIew</code> 在 socket 中检查行为“可选”。</li>
<li>给定 <code>UISlider</code> 最小值为 13,最大值为 25 in
奥特莱斯。</li>
</ol>

<p>编辑:
<code>UIView</code></p>的结构

<p> <a href="/image/L18ue.png" rel="noreferrer noopener nofollow"><img src="/image/L18ue.png" alt="enter image description here"/></a> </p>

<p>我尝试了以下代码:</p>

<p>尝试1:</p>

<pre><code>- (IBAction)sliderTap:(UISlider*)sender //Value changed action for UISlider
{
    tvVarse.font = ;
}
</code></pre>

<p>尝试2:</p>

<pre><code>- (IBAction)sliderTap:(UISlider*)sender //Value changed action for UISlider
{
    dispatch_async(dispatch_get_main_queue(), ^{

    tvVarse.font = ;

    });
}
</code></pre>

<p>尝试 3:</p>

<pre><code>- (IBAction)sliderTap:(UISlider*)sender //Value changed action for UISlider
{
    dispatch_async(dispatch_get_main_queue(), ^{
    tvVarse.text=strTextToShow;
    tvVarse.font = ;
    ;
    ;
    });
}
</code></pre>

<p>尝试 4:</p>

<pre><code>- (IBAction)sliderTap:(UISlider*)sender //Value changed action for UISlider
{
    dispatch_async(dispatch_get_main_queue(), ^{
    tvVarse.font = ;
    tvVarse.text=strTextToShow;
    ;
    ;
    });
}
</code></pre>

<p>尝试 5:</p>

<pre><code>- (IBAction)sliderTap:(UISlider*)sender //Value changed action for UISlider
{
    tvVarse.font = ;
    tvVarse.text=strTextToShow;
}
</code></pre>

<p>现在有趣的一点是,当我提供其他文本时,它正在工作,即</p>

<p>工作但不同的小文本:</p>

<pre><code>- (IBAction)sliderTap:(UISlider*)sender //Value changed action for UISlider
{
    tvVarse.text=@&#34;My name is Manab&#34;;
    tvVarse.font = ;
}
</code></pre>

<p>谁能告诉我为什么这些不起作用?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试这个...</p>

<p><strong><em>先设置字体,再写文字……</em></strong></p>

<pre><code>tvVarse.font = ;
tvVarse.text=strTextToShow;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 通过 UISlider 更改 UITextView 的字体大小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36770136/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36770136/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 通过 UISlider 更改 UITextView 的字体大小