gpt4 book ai didi

swift - 在 Swift 中保存 Alert-textfieldinput

转载 作者:行者123 更新时间:2023-11-28 15:13:43 25 4
gpt4 key购买 nike

我想要一个表格 View ,当您单击最后一个单元格时,您可以在其中添加一个新元素。单击“确定”后,我不知道如何保存文本字段中的内容。

正如您可能从我的代码中看到的那样,我对编程还很陌生,而且它可能会变得复杂。如果有人能帮助我,那就太棒了。

import UIKit

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

@IBOutlet weak var companyTableView: UITableView!

var psgTextField: UITextField?
var emTextField: UITextField?


var passengers = [""]
var button: UILabel?

override func viewDidLoad() {
super.viewDidLoad()
configureButton()

companyTableView.delegate = self
companyTableView.dataSource = self

}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return passengers.count
}


@objc func buttonTapped(sender: UITapGestureRecognizer) {
let alertController = UIAlertController(title: "Enter name and email",
message: nil,
preferredStyle: .alert)
alertController.addTextField(configurationHandler: psgTextField)
alertController.addTextField(configurationHandler: emTextField)

let okAction = UIAlertAction(title: "Submit", style: .default, handler: self.okHandler)
let cancelAction = UIAlertAction(title: "Cancel", style: .cancel, handler: nil)

alertController.addAction(okAction)
alertController.addAction(cancelAction)

self.present(alertController, animated: true)


}

func psgTextField(textField: UITextField!) {
psgTextField = textField
psgTextField?.placeholder = "Name"
}

func emTextField(textField: UITextField!) {
emTextField = textField
emTextField?.placeholder = "Email"
}

func okHandler(alert: UIAlertAction!) {

let psgStr = (psgTextField?.text)!

passengers.removeLast()
passengers.append(psgStr)
passengers.append("")

}

func configureButton() {
button = UILabel()
let frame = CGRect(x: 0, y: 5, width: 300, height: 30)
button?.frame = frame
button?.text = " Add Passenger"
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(buttonTapped(sender:)))
button?.addGestureRecognizer(tapGesture)
button?.isUserInteractionEnabled = true
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

let passenger = passengers[indexPath.row]
if let cell = companyTableView.dequeueReusableCell(withIdentifier: "cell") {
cell.textLabel?.text = passenger

if cell.textLabel?.text == "" {
cell.contentView.addSubview(button!)
} else {
// Nothing
}

return cell
}

return UITableViewCell()


}
}

当我现在点击“提交”时,警报就消失了,没有任何改变。

最佳答案

您需要在 okHandler 方法中调用 companyTableView.reloadData()

关于swift - 在 Swift 中保存 Alert-textfieldinput,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47227938/

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