Как вызвать текстовое поле ячейки табличного представления в действие кнопки, используя делегат в swift - PullRequest
0 голосов
/ 19 мая 2019

У меня есть два представления таблицы в двух контроллерах представления. Теперь я хочу отправить данные текстового поля EmployeeProfileViewController, нажимая кнопку на метке EmployeeViewController. для этого я создал EmployeeDelegateProtocol в EmployeeProfileViewController. но здесь я не могу добавить tableview textfield.text в метод делегата.

получена ошибка: использование неразрешенного идентификатора 'firstName'

вот мой код:

import UIKit

protocol EmployeeDelegateProtocol {
func sendDataToEmployeeViewController(myData: String)
}

class EmployeeProfileViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, UINavigationControllerDelegate,UIImagePickerControllerDelegate {

var delegate: EmployeeDelegateProtocol?

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view.
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

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

    var cell = tableView.dequeueReusableCell(withIdentifier: "cell4", for: indexPath) as? EmployeeProfileTableViewCell
        cell?.saveButtonTapped.addTarget(self, action: #selector(saveButtonClicked), for: .touchUpInside)

    return cell
}

@objc func saveButtonClicked(){
    print("button clicked")
    self.delegate?.sendDataToEmployeeViewController(myData: firstName.text!)
}
}

В коде EmployeeViewController:

import UIKit

class EmployeeViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, EmployeeDelegateProtocol {

var namesArray = [String]()
@IBOutlet weak var tableView: UITableView!

override func viewDidLoad() {
    super.viewDidLoad()
    tableView.delegate = self
    tableView.dataSource = self
    //Do any additional setup after loading the view.
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return namesArray.count
}

func sendDataToEmployeeViewController(myData: String) {
    self.namesArray.append(myData)
    tableView.reloadData()
    print(namesArray)
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! EmployeeTableViewCell
    cell.empName.text = namesArray[indexPath.row]

    cell.viewProfileButton.addTarget(self, action: #selector(viewprofileBUttonClicked), for: .touchUpInside)
    cell.removeRowButton.addTarget(self, action: #selector(removerowButtonClicked), for: .touchUpInside)

    return cell
}


@objc func viewprofileBUttonClicked(sender : UIButton!){
    print("view profile clicked")
    let profileVC = self.storyboard?.instantiateViewController(withIdentifier: "EmployeeProfileViewController") as! EmployeeProfileViewController
    self.navigationController?.pushViewController(profileVC, animated: true)
}

@objc func removerowButtonClicked(sender : UIButton!) {
    namesArray.remove(at: sender.tag)
    self.tableView.reloadData()
}

@IBAction func addButtonClicked(_ sender: Any) {

    var empProfileVC = self.storyboard!.instantiateViewController(withIdentifier: "EmployeeProfileViewController") as! EmployeeProfileViewController
    empProfileVC.delegate = self

    self.navigationController?.pushViewController(empProfileVC, animated: true)
}
}

Пожалуйста, помогите мне в ошибке. Заранее спасибо.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...