菜鸟教程小白 发表于 2022-12-13 07:50:02

ios - 将 TextKit 与 Storyboard 一起使用


                                            <p><p>我在带有 <code>UINavigationController</code> 的 Storyboard 中有一个 <code>UITextView</code>,如下所示:</p>

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

<p>它在顶部有一个自动布局约束,以防止最上面的文本隐藏在导航栏下方,并在左、右和底部有一个约束。</p>

<p>我需要使用自定义 <code>NSTextStorage</code> 子类,据我所知,这需要我手动实例化 <code>UITextView</code> 并将其插入到 View 中。我的问题是,如何用代码模拟这些约束?</p>

<p>这是我为初始化 UITextView 而编写的代码:</p>

<pre><code>_textStorage = [ initWithString:@&#34;some string&#34;];

_layoutManager = ;
;

_textContainer = ;
;

_textView = [ initWithFrame:self.view.bounds textContainer:_textContainer];

;
</code></pre>

<p>顺便说一句,如果有办法在 Storyboard 中使用带有 <code>UITextView</code> 的自定义 <code>UITextStorage</code> 子类,我可以解决这个问题,我是不是误以为这个了不可能吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>为了回答我自己的问题,这里的解决方案是将 UITextView 子类化,在子类中实现我的自定义行为,然后在 Storyboard 中设置 UITextView 以使用子类。这让我可以维护 Storyboard中的初始约束集。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 TextKit 与 Storyboard 一起使用,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23672622/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23672622/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 TextKit 与 Storyboard 一起使用