gpt4 book ai didi

ios - 为什么我的警报 View 文本字段中没有启用自动更正? (以及如何启用它?)

转载 作者:可可西里 更新时间:2023-11-01 02:26:03 25 4
gpt4 key购买 nike

我正在创建一个警报 View :

var alert = UIAlertController(title: "Place the pin", message: "Aditional details", preferredStyle: .Alert)
let saveAction = UIAlertAction(title: "Ajouter", style: .Default) {
(_:UIAlertAction!) -> Void in 

}

let cancelAction = UIAlertAction(title: « Cancel », style: .Default) {
(_:UIAlertAction!) -> Void in
}

alert.addTextFieldWithConfigurationHandler() { (_:UITextField!) -> Void in }
alert.addAction(cancelAction)
alert.addAction(saveAction)

presentViewController(alert, animated: true, completion: nil)

但我不明白为什么在警报的文本字段中未启用自动更正?如何启用它?
谢谢。

最佳答案

实际上我必须明确指定它,所以我替换了:

alert.addTextFieldWithConfigurationHandler() { (_:UITextField!) -> Void in }

与:

alert.addTextFieldWithConfigurationHandler() { (textField:UITextField!) -> Void in  textField.autocorrectionType = UITextAutocorrectionType.Yes }

关于ios - 为什么我的警报 View 文本字段中没有启用自动更正? (以及如何启用它?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28009473/

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