我有一个按钮,您可以点击该按钮以将新的textField添加到屏幕。我找不到一种方法可以添加标记来标识每个已创建的textField,以便用户可以删除它。
谢谢
let textFieldGenerator = UITextField(frame:CGRect(x: 50, y: 50, width: 200, height: 100))
textFieldGenerator.minimumFontSize = 6
textFieldGenerator.adjustsFontSizeToFitWidth = true
textFieldGenerator.textAlignment = NSTextAlignment.center
textFieldGenerator.font = UIFont.systemFont(ofSize: 20.0)
textFieldGenerator.borderStyle = UITextField.BorderStyle.none
textFieldGenerator.backgroundColor = UIColor.gray
textFieldGenerator.contentMode = UIView.ContentMode.scaleAspectFit
self.view.addSubview(textFieldGenerator)