gpt4 book ai didi

swift - 更新通过 Swift 3 中的 NSLayout 设置的 UITextView 大小

转载 作者:行者123 更新时间:2023-11-28 15:46:35 26 4
gpt4 key购买 nike

我的 UIViewController 中有一个变量,它与设置 UITextView 高度的约束相关联:
var textViewHeight: Int!

这是约束条件:
self.view.addConstraintsWithFormat(格式: "V:|-74-[v0(\(textViewHeight!))]", views: self.textView)

我使用这个扩展:

extension UIView
{
func addConstraintsWithFormat(format: String, views: UIView...)
{
var viewDict = [String: AnyObject]()
for (index, view) in views.enumerated()
{
view.translatesAutoresizingMaskIntoConstraints = false
let key = "v\(index)"
viewDict[key] = view
}
addConstraints(NSLayoutConstraint.constraints(withVisualFormat: format, options: NSLayoutFormatOptions(), metrics: nil, views: viewDict))
}
}

我已经设置了一个在键盘出现时触发的通知。它被正确触发(我有一个 print 并且它总是正确触发)并且执行的函数包括以下代码:

if let keyboardSize = sender.userInfo?[UIKeyboardFrameBeginUserInfoKey] as? CGRect {
print(keyboardSize.height)
self.textViewHeight = Int(self.view.frame.height-keyboardSize.height-100)
self.view.updateConstraints()
}

键盘的高度打印正确但 TextView 的高度没有改变.....
提前致谢!

最佳答案

如果变量值(在本例中为 textViewHeight)稍后更改,则仅使用视觉格式设置一次约束不会更新约束。因此,您必须通过代码实际设置一个约束,稍后可以在 textViewHeight 值更改时对其进行修改。

以下是您需要的更改:

1:添加一个变量来保存对您稍后要修改的约束的引用。

var heightConstraint:NSLayoutConstraint!

2:单独为 TextView 创建约束,而不是使用视觉格式 (self.view.addConstraintsWithFormat(format: "V:|-74-[v0(\(textViewHeight!))]", View :self.textView))

// Add vertical constraints individually
let top = NSLayoutConstraint(item:textView, attribute: NSLayoutAttribute.top, relatedBy: NSLayoutRelation.equal, toItem:topLayoutGuide, attribute: NSLayoutAttribute.bottom, multiplier:1.0, constant:74.0)
heightConstraint = NSLayoutConstraint(item:textView, attribute:NSLayoutAttribute.height, relatedBy: NSLayoutRelation.equal, toItem:nil, attribute:NSLayoutAttribute.notAnAttribute, multiplier:1.0, constant:textViewHeight)
view.addConstraint(top)
view.addConstraint(heightConstraint)

3:您最好将 textViewHeight 更改为 CGFloat,因为您将在那里处理的所有值都是 CGFloat 值,而不是比Int

4:在获取键盘通知的地方,计算textViewHeight后,添加以下行:

self.heightConstraint.constant = textViewHeight

这应该可以解决问题,因为现在,当 textViewHeight 更改时,约束也会更新 :)

关于swift - 更新通过 Swift 3 中的 NSLayout 设置的 UITextView 大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42941850/

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