gpt4 book ai didi

ios - 我的应用程序因 heightConstraints 而崩溃我不知道如何修复

转载 作者:行者123 更新时间:2023-11-28 13:28:37 25 4
gpt4 key购买 nike

当我注释掉约束时它工作得很好,但问题是 textfield 的高度变得太小,当我添加 heightConstraint 时,它工作正常我的 iPhone XS Max,但在其他 Iphone 上崩溃了...

lazy var textField: MaterialTexField = { //MaterialTexField

let tf = MaterialTexField()
tf.translatesAutoresizingMaskIntoConstraints = false
self.contentView.addSubview(tf)

NSLayoutConstraint.activate([
tf.leadingAnchor.constraint(equalTo: self.contentView.leadingAnchor, constant:16.0),
tf.trailingAnchor.constraint(equalTo: self.contentView.trailingAnchor, constant:-16.0),
tf.topAnchor.constraint(equalTo: self.contentView.topAnchor, constant:8.0),
tf.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: 1),
//This is the problematic constraints
tf.heightAnchor.constraint(lessThanOrEqualTo:self.contentView.heightAnchor, multiplier:0.9)

return tf

}()

最佳答案

你要不要试试这个

tf.bottomAnchor.constraint(equalTo: self.contentView.bottomAnchor, constant: 1.0),

代替

tf.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: 1),

关于ios - 我的应用程序因 heightConstraints 而崩溃我不知道如何修复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57884474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com