我有一个要求,我需要在警报消息之后在UIAlertController上添加文本字段。我正在使用下面的代码来实现上述要求。
*anAlertController.addTextField { (textField) in
textField.allowsEditingTextAttributes = false
textField.borderStyle = .none
textField.layer.borderColor = UIColor.clear.cgColor
textField.layer.borderWidth = 0.0
textField.backgroundColor = UIColor.clear
textField.textAlignment = NSTextAlignment.center
textField.delegate = self
textField.heightAnchor.constraint(equalToConstant: 50).isActive = true
textField.text = "123456"
}*
以上代码未删除文本框周围的边框,并且与警报背景色不匹配。 但是,如果我尝试使用上述代码将textfield添加到viewcontroller视图中,则会删除边框填充。 我在做什么错。能否请任何人建议如何实现这一目标