We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb5b135 commit d57e61cCopy full SHA for d57e61c
CoreDataDemo/SessionsViewController.swift
@@ -60,7 +60,7 @@ class SessionsViewController: UITableViewController {
60
let session = fetchedResultsController.fetchedObjects?[indexPath.row]
61
62
cell.titleLabel.text = session?.title
63
- cell.speakerLabel.text = session?.speaker?.name
+ cell.speakerLabel.text = session?.speaker?.name.map { "by \($0)" }
64
cell.dateLabel.text = session?.date.map(dateFormatter.string(from:))
65
66
return cell
0 commit comments