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

ios - 在 UITextView 中显示富文本文件会导致不稳定/缓慢的滚动


                                            <p><p>我目前正在像这样将非英语(希伯来语)富文本文件加载到 UITextView 中。 </p>

<pre><code>self.textView.attributedText =
    [NSAttributedString.alloc
   initWithFileURL:[ NSBundle.mainBundle URLForResource:@&#34;TextFile&#34; withExtension:@&#34;rtf&#34;]
   options:nil
   documentAttributes:nil
   error:NULL
   ];
</code></pre>

<p>一切都正确加载并且文件滚动,只是在下降的过程中变得非常不稳定。我认为这是 UITextView 的渲染问题。 </p>

<p>是否有任何其他库或方法可以使滚动平滑。
注意: UITextView 已经是不可编辑和不可选择的。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这可能并不理想,但我在类似情况下也有过这个想法。尝试增加 <code>UITextView</code> 的高度(以创建一种缓冲区)。您可能需要调整各种 <code>UIView</code> 的 <code>scrollIndicatorInsets</code>、<code>contentInsets</code>、<code>layer.zPosition</code>,并可能使<code>UITextView</code> 透明,后面有另一个 <code>UITextView</code>,其大小/边框/等取决于您的布局。</p>

<p><strong>选项 2</strong></p>

<pre><code>UIScrollView *scrollView = [ initWithFrame:CGRectMake(40, 100, 200, 100)];
scrollView.scrollEnabled = YES;
scrollView.contentInset = UIEdgeInsetsZero;
;

UILabel *label = [ initWithFrame:CGRectMake(0, 0, scrollView.bounds.size.width, HEIGHT)];
label.text = @&#34;text&#34;;
label.numberOfLines = 0;
;
scrollView.contentSize = CGSizeMake(label.bounds.size.width, label.bounds.size.height);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 UITextView 中显示富文本文件会导致不稳定/缓慢的滚动,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30563910/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30563910/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 UITextView 中显示富文本文件会导致不稳定/缓慢的滚动