菜鸟教程小白 发表于 2022-12-12 16:31:02

ios - 在 UITextView Objective-C 内的文本末尾添加更多按钮?


                                            <p><p>我正在尝试做与此链接 <a href="http://www.oracle.com/webfolder/ux/mobile/pattern/img/expand-collpase-description.png" rel="noreferrer noopener nofollow">http://www.oracle.com/webfolder/ux/mobile/pattern/img/expand-collpase-description.png</a> 中的类似的事情</p>

<p>单击“更多”按钮时扩展 UITextView 内的内容。我正在我的 viewDidLoad 中创建按钮,如下所示 </p>

<pre><code>UIButton *button = ;
;
;
</code></pre>

<p>从 PFQuery 加载数据后,我正在 UITextView 内设置按钮的框架</p>

<pre><code>PFQuery *query = ;
    ;

    [query getFirstObjectInBackgroundWithBlock:^(PFObject *itemDataObj, NSError *error) {
      if (!error) {

            self.detailPriceView.text = ;

            self.detailPriceView.text = ;

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

<p>如何在文本末尾的 UITextView 中添加更多按钮?我还创建了一个约束以在单击更多按钮时增加它的高度,但我无法将约束的高度增加到超过某个阈值大小。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我也在做同样的事情。只需将按钮添加到textView.superView,因为textView 是scrollView。在 textView 中使用按钮的矩形作为<br/>
<code>textView.textContainer.exclusionPaths = </code></p>

<p>最后,我做到了。最重要的是 <code>rect</code> 必须在 <code>textView.frame</code> 中<strong>包含</strong>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 UITextView Objective-C 内的文本末尾添加更多按钮?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33088565/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33088565/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 UITextView Objective-C 内的文本末尾添加更多按钮?