我使用 Swift 在 xcode 上创建了一个自定义键盘。它在模拟器上完美运行,但是当我在真实设备上测试它时,虽然键盘出现很快,但响应非常慢(最少 5 秒)。我不知道是什么问题。按下按钮时,键入文本需要花费太多时间,或者有时会崩溃。有什么想法吗?
func handleTapOnButton(button: UIButton) {
let buttonText = button.titleForState(.Normal)
if let proxy = textDocumentaryProxy {
if button.titleForState(.Normal) == " " {
proxy.insertText(" ")
} else {
proxy.insertText(buttonText!)
}
}
if globals.tapped != 3 && (switchedToNumbers == false) {
lowerCase()
globals.tapped = 1
}
}
如果您使用过 TouchUpInside,您可以进行 TouchDown Event。它可能会有所帮助。
关于iOS 自定义键盘输入速度极慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38306564/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |