Skip to content

Instantly share code, notes, and snippets.

@mdobson
Last active December 18, 2015 16:49
Show Gist options
  • Save mdobson/5814607 to your computer and use it in GitHub Desktop.
Save mdobson/5814607 to your computer and use it in GitHub Desktop.
Set cell text to book title
NSString *title = _objects[indexPath.row][@"title"];
NSString *author = _objects[indexPath.row][@"author"];
cell.textLabel.text = title;
cell.detailTextLabel.text = author;
@mdobson
Copy link
Author

mdobson commented Jun 19, 2013

Here is how we set our cell text to the title of our book!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment