Неоднозначная ссылка на член 'tableView (_: numberOfRowsInSection :)' - PullRequest
0 голосов
/ 18 октября 2018

Хотите передать данные из ViewController, у которого есть инициализация TableView, в другой ViewController.Но он показывает мне ошибку "Неоднозначная ссылка на элемент 'tableView (_: numberOfRowsInSection :)'"

@IBOutlet weak var completedCaseTableView: UITableView!

override func viewDidLoad() {
    super.viewDidLoad()

    completedCaseTableView.delegate = self
    completedCaseTableView.dataSource = self

    // Do any additional setup after loading the view.
}


public func numberOfSections(in tableView: UITableView) -> Int {
    return 1
}

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

public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "CompletedCaseCell", for: indexPath) as! Admin_CompletedCases_TableViewCell

    cell.completedTktNum.text = usrTktList[indexPath.row]
    cell.completedUsrName.text = usrNameList[indexPath.row]

    cell.completedCustomerDp.image = UIImage(named: imageList[indexPath.row])

    cell.completedPostedDate.text = datesList[indexPath.row]
    cell.completedUsrReason.text = reasonList[indexPath.row]
    cell.statusOfCase.text = statusList[indexPath.row]



    return cell
}

public override func prepare(for segue: UIStoryboardSegue, sender: Any?) {

    if (segue.identifier == "AdminCompletedDetailsSegue" ){

        let adminCompletedDvc = segue.destination as! Admin_Completed_Details_ViewController

        if let indexPath = self.tableView.indexPathForSelectedRow {

            adminCompletedDvc.newTktNumNew = usrTktList[indexPath.row] as String

            adminCompletedDvc.customerUsernameAdmnNew = usrNameList[indexPath.row] as String

            adminCompletedDvc.postedDateAdmnNew = datesList[indexPath.row] as String

            adminCompletedDvc.customerReasonAdmnNew = reasonList[indexPath.row] as String

            adminCompletedDvc.customerCommentsAdmnNew = commentList[indexPath.row] as String

            adminCompletedDvc.customerImgAdmnNew = imageList[indexPath.row] as String

        }

    }
}

Even after adding the tableview to tableview within Viewcontroller to Delegate and Datasource, and to @IBOUTLET, still getting this issue

1 Ответ

0 голосов
/ 18 октября 2018

Проблема в том, что в вашем контроллере представления нет ничего, что называется self.tableView.Его зовут completedCaseTableView.Поэтому измените это:

if let indexPath = self.tableView.indexPathForSelectedRow {

на это:

if let indexPath = self.completedCaseTableView.indexPathForSelectedRow {
...