我正在研究Swift上的Master-view应用程序。该应用程序必须查看控制器; detailView接受用户的输入,主视图包含信息的单元格。像联系人应用程序一样。
我已经做了所有事情并且应用程序运行正常,但是我无法在主屏幕(主视图)上显示我的内容。来自用户的数据安全地存储在不同类中的数组中。这是一些代码
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
let object = contact.entries[indexPath.row] as ContactListEntry
cell.textLabel!.text = object.firstName + " " + object.lastName
cell.detailTextLabel!.text = object.phoneNumber!
return cell
}
我需要能够在主视图上显示包含其内容的单元格。 如果没有意义,请告诉我。我可以澄清一点。
非常感谢