gpt4 book ai didi

ios - 访问 UIAlertControllers 文本字段

转载 作者:搜寻专家 更新时间:2023-10-31 22:16:48 27 4
gpt4 key购买 nike

我认为在处理程序操作中访问 UIAlertController 的 textField 时遇到问题。我用谷歌搜索了这个错误,但并没有从中得到太多。我在 Xcode 6.0.1 中使用 Swift。这是错误:

'[AnyObject]?'没有名为“下标”的成员

@IBAction func addPressed(sender: UIBarButtonItem) {
var alert = UIAlertController(title: "New Event", message: "Name of the event?", preferredStyle: .ActionSheet)
alert.addTextFieldWithConfigurationHandler(){
textField in
textField.placeholder = "Christmas"
textField.becomeFirstResponder()
}
alert.addAction(UIAlertAction(title: "Save", style: .Default, handler: {
action in
var text = alert.textFields[0].text // <-- cant access alert? The exclamation mark appears here
}))

}

使用 ((alert.textFields[0] as UITextField).text) 给我完全相同的错误。

最佳答案

您需要做的就是打开 UITextField 数组,然后将其转换为 UITextField,因为它实际上是 AnyObject 数组。

代码应该是这样的:

var text = (alert.textFields![0] as UITextField).text

关于ios - 访问 UIAlertControllers 文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26155433/

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