gpt4 book ai didi

swift - view.endEditing 导致应用程序在某些文本字段上卡住

转载 作者:行者123 更新时间:2023-11-28 06:45:33 24 4
gpt4 key购买 nike

问题已解决。见文末。

抱歉,如果这有点长,但我希望我已经提供了尽可能多的信息来解决这个问题。

问题简要概述:使用我的自定义小键盘在文本字段中输入值。点击完成按钮(应该触发 view.endEditing),一些文本字段会导致应用程序卡住,大多数时候 Xcode 甚至不会抛出错误,而是只是重新启动应用程序,但我确实捕获了一次(下图)。它在某些文本字段上按预期工作。

所以我有一个带有一堆文本字段的 View Controller 供用户填写,然后执行计算。

我制作了一个自定义键盘,它本质上是带有“完成”按钮的小数点键盘。我通过制作一个 keyboard.xib 文件和一个 keyboard.swift 文件来做到这一点。

这是错误的快照,我在下面包含了一大堆代码,以防我使用的方法不是最好的。

Error Snapshot

这是 keyboard.swift 文件的样子:

import UIKit

// The view controller will adopt this protocol (delegate)
// and thus must contain the keyWasTapped method
protocol KeyboardDelegate: class {
func keyWasTapped(character: String)
func keyDone()
func backspace()
}

class keyboard: UIView {


// This variable will be set as the view controller so that
// the keyboard can send messages to the view controller.
weak var delegate: KeyboardDelegate?

// MARK:- keyboard initialization

required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
initializeSubviews()
}

override init(frame: CGRect) {
super.init(frame: frame)
initializeSubviews()
}

func initializeSubviews() {
let xibFileName = "Keyboard" // xib extention not included
let view = NSBundle.mainBundle().loadNibNamed(xibFileName, owner: self, options: nil)[0] as! UIView
self.addSubview(view)
view.frame = self.bounds
}

// MARK:- Button actions from .xib file

@IBAction func keyTapped(sender: UIButton) {
// When a button is tapped, send that information to the
// delegate (ie, the view controller)
self.delegate?.keyWasTapped(sender.titleLabel!.text!) // could alternatively send a tag value
}

@IBAction func backspace(sender: UIButton) {
self.delegate?.backspace()
}

@IBAction func Done(sender: UIButton) {
self.delegate?.keyDone()
}


}

在 viewController 中,我很确定我已经包含了所有必要的东西来访问键盘,因为它适用于某些文本字段。如:

class myViewController: UITableViewController,UITextFieldDelegate, KeyboardDelegate

然后在 viewDidLoad 中设置每个 textField 委托(delegate):

            self.textField1.delegate = self
self.textField2.delegate = self
self.textField3.delegate = self

// initialize custom keyboard
let keyboardView = keyboard(frame: CGRect(x: 0, y: 0, width: 0, height: numpad.height))
keyboardView.delegate = self // the view controller will be notified by the keyboard whenever a key is tapped

// replace system keyboard with custom keyboard
textField1.inputView = keyboardView
textField2.inputView = keyboardView
textField3.inputView = keyboardView

然后这个函数(在我看来是问题所在):

    func keyDone() {
view.endEditing(true)
//activeTextField.resignFirstResponder()
print("please dont freeze")
}

我已经检查了所有的连接,它们似乎没问题。

如果我可以添加更多信息来帮助解决问题,请告诉我。非常感谢。

已解决!!!我想我只是把它归结为殴打我的头而不是从屏幕上休息一下!我仍然很困惑为什么没有给出更具体的错误。

问题是,在某些情况下,其中一个函数被零除(这是未定义的……不可能),但从中得到的一件好事(谢谢 Olivier)是仪器工具,可以帮助找到关于代码正在失去理智。 This tutorial helped me understand how to use instruments!因此,一旦我看到它在哪里变得疯狂,我就设置了一堆打印语句来观察值进入“问题”计算时的值,我发现分母为零。重新排列代码以避免这种情况并解决问题!

最佳答案

此错误消息基本上是说存在内存问题,请尝试使用仪器(尤其是分配)运行代码,这可能表明您的键盘有问题

编辑 2:对于将来发现此错误消息的任何人(在这种情况下为实际解决方案)

仔细检查在 keyDone() 之后运行的任何代码代码,以查看是否存在任何无限循环或导致编译器假定需要无限量内存的情况。在这种情况下,一行代码被零除,导致致命的内存错误(无法分配它生成的 N/A 值)

关于swift - view.endEditing 导致应用程序在某些文本字段上卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36527696/

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