在做了一些搜索和编辑之后,我似乎无法找到修复此错误的解决方案.我正在尝试将我的位置搜索结果与表格链接,以便以列表形式显示搜索结果.
我的地图上有详细信息按钮,链接到名为’FirstViewController’的UIViewController.我的结果表与一个名为’ResultsTableViewController’的UITableViewController链接.我的原型单元与名为’ResultsTableCell’的UITableViewCell链接,这也是我的网点所在的位置.
以下是两个单独的错误:
Illegal Configuration: The nameLabel outlet from the ResultsTableViewController to the UILabel is invalid. Outlets cannot be connected to repeating content.
Illegal Configuration: The phoneLabel outlet from the ResultsTableViewController to the UILabel is invalid. Outlets cannot be connected to repeating content.
我已经阅读了同样问题的其他人的帖子,试图相应地修复它们,我仍然得到同样的错误.
以下是填充单元格的代码,位于ResultsTableViewController中.
let cell = tableView.dequeueReusableCellWithIdentifier("resultCell",forIndexPath: indexPath) as! ResultsTableCell // Configure the cell... let row = indexPath.row let item = mapItems[row] cell.nameLabel.text = item.name cell.phoneLabel.text = item.phoneNumber return cell }
我的ResultsTableCell类中的代码:
import UIKit class ResultsTableCell: UITableViewCell { @IBOutlet weak var nameLabel: UILabel! @IBOutlet weak var phoneLabel: UILabel! }