Skip to content
This repository has been archived by the owner on May 23, 2022. It is now read-only.

Commit

Permalink
Fix Example's detail text.
Browse files Browse the repository at this point in the history
  • Loading branch information
morizotter committed Jan 26, 2015
1 parent ca1af14 commit fc021c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Example/Example/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ViewController: UITableViewController {
if segue.identifier == "ToDetail" {
let viewController = segue.destinationViewController as DetailViewController
if let cell = sender as? UITableViewCell {
viewController.text = "\(cell.textLabel?.text)"
viewController.text = cell.textLabel?.text
}
}
}
Expand Down

0 comments on commit fc021c8

Please sign in to comment.