I\'m creating a UITableViewController with Swift language and in a method
override func tableView(tableView: UITableView?, cellForRowAtIndexPath indexPath: N
Use .item instead of .row
cell.textLabel.text = self.dataStore[indexPath.item]