Skip to content

Commit

Permalink
update Examples.md
Browse files Browse the repository at this point in the history
Changed "Reusable table view cells"
  • Loading branch information
superdoliant authored Nov 29, 2017
1 parent 74156bf commit 43596e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/Examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class FaqAnswerController: UITableViewController {
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let textCell = tableView.dequeueReusableCell(withIdentifier: R.nib.textCell.identifier, for: indexPath)!
let textCell = tableView.dequeueReusableCell(withIdentifier: R.reuseIdentifier.textCell, for: indexPath)!
textCell.mainLabel.text = "Hello World"
return textCell
}
Expand Down

0 comments on commit 43596e0

Please sign in to comment.