Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro committed Jan 3, 2015
1 parent d0477ea commit 7729109
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -49,8 +49,8 @@ class RestKitTableViewController: CoreDataTableViewController {
let formatter = NSDateFormatter()
formatter.dateFormat = "MMMM d yyyy - HH:mm:ss"
let model = self.data![indexPath.row] as RestKitModel
cell.textLabel?.text = model.name
cell.detailTextLabel?.text = formatter.stringFromDate(model.date)
cell.textLabel!.text = model.name
cell.detailTextLabel!.text = formatter.stringFromDate(model.date)
}

override func cellIdentifier() -> String {

0 comments on commit 7729109

Please sign in to comment.