使用Button将文本添加到UITableViewcell中包含的文本字段值

问题描述 投票:0回答:1

我希望得到一个UIButton将其标题值添加到UITextField中包含的当前选定的UITableViewCell中。

我有一排按钮,其中包含用户可能使用的常用短语,例如“#CompanyName”。我将常用短语设置为按钮的标题。在按钮行的下方,我有一个UITableView,每个单元格包含几个静态标签和一个文本字段。我想允许用户按下表格视图上方的其中一个按钮,将按钮的标题值添加到当前正在编辑的文本字段中。

我设法使用文本字段和按钮在表格视图之外使用以下方法进行测试:

    @IBAction func buttonAction(_ sender: AnyObject) {
        buttonTitle = sender.titleLabel!.text!
        testOutlet.text = "\(testOutlet.text!) \(buttonTitle)"

现在我的问题是如何使这个“testOutlet.text”动态,因此它只知道正在编辑的文本字段。我调查了textFieldDidBeginEditing,但无法理解。我也尝试过定义indexPath。

ios swift uitableview cocoa-touch uitextfield
1个回答
0
投票

您需要知道当前正在编辑哪个UITextField。为此,您可以使用以下代码:

class ViewController: UIViewController {
    // code ...

    @IBAction func buttonAction(_ sender: AnyObject) {
        buttonTitle = sender.titleLabel!.text!
        oActiveTextField?.text = "\(oActiveTextField?.text ?? "") \(buttonTitle)"
    }

    fileprivate var oActiveTextField: UITextField?
}

extension ViewController: UITableViewDataSource {
    // code ...

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: yourIdentifier, for: indexPath) as! YourTableViewCell
        cell.textField.delegate = self
        // TODO: configure cell
        return cell
    }
}

extension ViewController: UITextFieldDelegate {

    func textFieldDidBeginEditing(_ textField: UITextField) {
        oActiveTextField = textField
    }

    func textFieldDidEndEditing(_ textField: UITextField) {
        oActiveTextField = nil
    }

}
© www.soinside.com 2019 - 2024. All rights reserved.