Skip to content

Instantly share code, notes, and snippets.

@spacedrabbit
Created December 2, 2014 22:01
Show Gist options
  • Save spacedrabbit/7108edbcbf7dac8a37a8 to your computer and use it in GitHub Desktop.
Save spacedrabbit/7108edbcbf7dac8a37a8 to your computer and use it in GitHub Desktop.
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
//1
FISPugCell * pugCell = (FISPugCell *)[tableView dequeueReusableCellWithIdentifier:@"pugCell"];
//2
[pugCell.pugImageView setContentMode:UIViewContentModeScaleAspectFit];
//3
[pugCell.pugImageView setImage:self.pugImages[indexPath.section]];
return pugCell;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment