gpt4 book ai didi

ios - 约束不适用于导航 Controller

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

我会尽量快点。我有一个带有高度为 0 的容器的主视图,每当启用键盘时,我将容器设置为与键盘相同的高度,并且我有一个按钮和一个电子邮件字段,并且我已经为此容器设置了约束,基本上向上推元素。我已经将键盘设置为在加载 View 时启用,并且它在主视图中正常工作但是一旦我按下按钮转到下一个 View ,键盘就会打开但按钮和电子邮件字段留在键盘后面因为约束不起作用,但是当我按下主页按钮并关闭应用程序(不是从后台)并重新打开它时,约束正常工作。只有当我将导航 Controller 嵌入主视图时才会发生这种情况,否则它会完美运行。有什么想法吗?

我在两个 View 上都有完全相同的代码。Ps:很抱歉发了这么长的帖子,我不知道该如何解释。

@IBOutlet weak var emailTF: UITextField!

@IBOutlet weak var bottomHeight: NSLayoutConstraint!`

override func viewWillAppear(_ animated: Bool)
{
super.viewWillAppear(animated)

NotificationCenter.default.addObserver(
self,
selector: #selector(keyboardWillShow),
name: NSNotification.Name.UIKeyboardWillShow,
object: nil
)

// Show keyboard by default
emailTF.becomeFirstResponder()
}

@objc func keyboardWillShow(_ notification: Notification)
{
if let userInfo = notification.userInfo
{
if let keyboardSize = (userInfo[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.cgRectValue
{
bottomHeight.constant = keyboardSize.height
view.setNeedsLayout()
}
}
}

更新:我发现了部分问题。当加载第二个 View 时我无法获得键盘高度,我将第二个 View 代码从“viewWillAppear”更改为“viewDidAppear”,使容器与键盘高度相同,但还有另一个问题。当我加载第一个 View 时,我得到的键盘高度为 271(这是正确的),当我移动到第二个 View 时,由于某种原因,键盘高度为 226,使 textField 移动 45。当我按下后退按钮从第二个 View 返回到第一个,键盘高度为 226。当我按下主页按钮并重新打开应用程序时,无论我在哪个屏幕,我得到的键盘高度为 271,这是正确的高度.我做错了什么?

更新 2:已解决!

因为我的代码只能在没有导航 Controller 的情况下工作,所以我感觉它与导航 Controller 具有的快速动画和过渡有关,并且它阻止了在加载之前读取代码,所以我尝试编写这一行代码emailTF.resignFirstResponder() 到我的按钮操作,它成功了!所以基本上我不得不在下一个 View 加载之前关闭键盘。我希望我能帮助一些遇到同样问题的用户。

最佳答案

首先确保包含正在更改的 View 的 VC 是文本字段/ TextView 的委托(delegate),然后从 viewWillAppear 调用 .becomeFirstResponder()。确保您正确注册/注销键盘通知。如果可能的话,您可以使用 ScrollView (在默认 UIView 之上)来包含 ViewControllers subview ,而不是改变约束。

func registerForKeyboardNotifications(){
//Adding notifies on keyboard appearing
NotificationCenter.default.addObserver(forName: Notification.Name.UIKeyboardWillShow, object: nil, queue: nil, using: keyboardWasShown)
NotificationCenter.default.addObserver(forName: Notification.Name.UIKeyboardWillHide, object: nil, queue: nil, using: keyboardWillBeHidden)
}

func deregisterFromKeyboardNotifications(){
//Removing notifies on keyboard appearing
NotificationCenter.default.removeObserver(self, name: Notification.Name.UIKeyboardDidShow, object: nil)
NotificationCenter.default.removeObserver(self, name: Notification.Name.UIKeyboardWillHide, object: nil)
}

func keyboardWasShown(notification: Notification) -> Void {
//Need to calculate keyboard exact size due to Apple suggestions
self.scrollView.isScrollEnabled = true
var info = notification.userInfo!
var keyboardSize:CGRect = (info[UIKeyboardFrameBeginUserInfoKey] as! NSValue).cgRectValue
if keyboardSize.size.height <= 0 { // to fix bug on iOS 11
keyboardSize = (info[UIKeyboardFrameEndUserInfoKey] as! NSValue).cgRectValue
}
self.scrollView.contentInset.bottom = keyboardSize.height //add this much
self.scrollView.scrollIndicatorInsets.bottom = keyboardSize.height //scroll too it.

var aRect : CGRect = self.view.frame
aRect.size.height -= keyboardSize.height
if let activeField = self.activeTextView {
if (!aRect.contains(activeField.frame.origin)){
self.scrollView.scrollRectToVisible(activeField.frame, animated: true)
}
}
}

func keyboardWillBeHidden(notification: Notification){
self.scrollView.contentInset.bottom = 0
self.scrollView.isScrollEnabled = true
self.scrollView.alwaysBounceVertical = true
}

关于ios - 约束不适用于导航 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47610570/

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