菜鸟教程小白 发表于 2022-12-12 22:11:09

ios - 将 UILabel 作为 subview 添加到 UITextView 时的模糊约束


                                            <p><p><strong>问题</strong><br/>
我将 <code>UITextView</code> 子类化并添加了一个 <code>UILabel</code> 作为 subview 。我想把标签放在右下角。</p>

<p><strong>代码</strong></p>

<pre><code>fileprivate lazy var counterLabel: UILabel = {
    let label = UILabel()
    label.translatesAutoresizingMaskIntoConstraints = false

    self.addSubview(label)

    // add constraints
    self.addConstraints([
      NSLayoutConstraint(item: label, equalTo: self, attribute: .right),
      NSLayoutConstraint(item: label, equalTo: self, attribute: .bottom)]
    )

    return label
}()
</code></pre>

<p><strong>截图</strong><br/>
<img src="/image/nyufe.png" alt="enter image description here"/> </p>

<p>如上图所示,红色标签显示为具有<code>模糊布局</code></p>

<p>如果我使用 Storyboard 并添加相同的两个约束(底部、右侧),则标签的位置不会模棱两可。我做错了什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你想要的是一个 superView 。将标签和 TextView 作为 subview 添加到此 superView 。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 UILabel 作为 subview 添加到 UITextView 时的模糊约束,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/39601965/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/39601965/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 UILabel 作为 subview 添加到 UITextView 时的模糊约束