gpt4 book ai didi

ios - UIAlertController 缓慢出现和关闭 - Swift

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:59:46 25 4
gpt4 key购买 nike

我正在使用 Swift 开发一个 iOS 应用程序,我遇到了两个问题,UIAlertController 非常慢!

1 - 显示缓慢且抖动

我已经设置了一个 UITableViewController,当我点击一个单元格时,它会触发以下代码:

let alertController = UIAlertController(title: "Enter Exam Grade", message: nil, preferredStyle:UIAlertControllerStyle.Alert)

alertController.addTextFieldWithConfigurationHandler({(textField: UITextField) in
textField.placeholder = "Earned"
textField.keyboardType = .NumberPad
})

alertController.addTextFieldWithConfigurationHandler({(textField: UITextField) in
textField.placeholder = "Out of"
textField.keyboardType = .NumberPad
})

alertController.addAction(UIAlertAction(title: "Save", style: UIAlertActionStyle.Default, handler: {
(alert: UIAlertAction) in

if let gradeTextField = alertController.textFields!.first as UITextField? {

if let outOfTextField = alertController.textFields!.last as UITextField? {

if (gradeTextField.text != "" && outOfTextField.text != "") {

print(gradeTextField.text)
print(outOfTextField.text)

}

}

}

}))

alertController.addAction(UIAlertAction(title: "Cancel", style: .Cancel, handler: nil))

self.presentViewController(alertController, animated: true, completion: nil)

当我导航到 View 并第一次点击单元格时,我收到了一个不稳定且缓慢的警报加载,正如您在下面的 GIF 中看到的那样。有趣的是,随后的点击加载通常平稳且快速。

Jittery to appear

编辑:GIF 的帧速率有点太慢,所以我附上了一些从它的慢速视频中截取的静止图像:

a) 第一次点击“Grade Exam”,警报开始出现在屏幕中央,但随后(突然)向上移动到正确位置)。

enter image description here enter image description here

b) 随后的点击,警报从头开始出现在正确的上方位置。

enter image description here enter image description here

2 - 警报关闭时键盘关闭速度较慢

我在 StackOverflow 周围看到过这个问题,但没有真正令人满意的解决方案。当您点击取消按钮时,警报将很快消失,但键盘也需要很长时间才能消失。这应该是即时的,因为悬挂式键盘会给用户留下不好的印象。

Slow to dismiss keyboard

最佳答案

从您提供的 gif 文件来看,键盘的启动似乎是“正常的”。但是假设它是否很慢,如果它确实加载得更快,也许你可以试试这个。

顺便提一下,我还没有尝试过这段代码并从这里输入。

用于慢速显示键盘。

textField.placeholder = "Out of"
textField.keyboardType = .NumberPad
textField.becomeFirstResponder()

用于缓慢隐藏键盘。

alertController.addAction(UIAlertAction(title: "Cancel", style: .Cancel, handler: {
(alert: UIAlertAction) in
self.view.endEditing(true)
}))

关于ios - UIAlertController 缓慢出现和关闭 - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37801790/

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