Skip to content

Instantly share code, notes, and snippets.

@mmesarina
Created October 18, 2014 04:31
Show Gist options
  • Select an option

  • Save mmesarina/5bb03740f6ecd79139a7 to your computer and use it in GitHub Desktop.

Select an option

Save mmesarina/5bb03740f6ecd79139a7 to your computer and use it in GitHub Desktop.
RottenTomatoes MovieDetailController.m reload method
- (void)reload{
self.movieTitle.text = self.movieDetail.title;
self.synopsis.text = self.movieDetail.sypnopsis;
self.cast.text = self.movieDetail.cast;
self.rating.text = self.movieDetail.ratings;
[self.movieImage setImageWithURL:[NSURL URLWithString:self.movieDetail.imageURL]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment