菜鸟教程小白 发表于 2022-12-13 09:57:18

ios - 如何在 UITextView 中自动换行?


                                            <p><p>我有一个包含在 UIScrollView 中的 UITextView。 UITextView 是根据 UISegmentedControl 动态加载的,但我不知道如何自动换行,所以单词移动到下一行。</p>

<p> <img src="/image/70DjB.png" alt="enter image description here"/> </p>

<p>.m:</p>

<pre><code>@interface Tester ()
{
    UITextView *sponsor;
}

- (void)viewDidLoad
{
    ;
    // Do any additional setup after loading the view.

    sponsorInfo = [ initWithFrame:self.sponsorsScrollView.frame];

    ;
}

- (IBAction)control:(UISegmentedControl *)sender
{
    if (self.sponsorSegmentedControl.selectedSegmentIndex == 0)
    {
      ;
    }
    else
    {
      //
    }
}

- (void)changeGenericAbout:(int)index
{
    if (index == 0)
    {
      sponsorInfo.text = @&#34;&#34;;


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

<p>如何在 iOS 7+ 中实现这种自动换行?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>首先,我认为您的 textview 看起来有点奇怪。右边不应该也有边距吗?现在它看起来像 textview 继续向右。框架是正确的还是你对 textContainerInset 做了什么?</p>

<p>无论如何要回答有关更改换行符的问题:textview 的 textContainer 属性有一个 lineBreakMode,可以设置为 NSLineBreakByWordWrapping。我认为应该可以解决它</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 UITextView 中自动换行?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27086740/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27086740/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 UITextView 中自动换行?