Skip to content

Instantly share code, notes, and snippets.

@jault3
Created June 25, 2014 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jault3/ffd3e23a3574c7b1baec to your computer and use it in GitHub Desktop.
Save jault3/ffd3e23a3574c7b1baec to your computer and use it in GitHub Desktop.
Set Cell Score
int score;
if (indexPath.section == 0) {
score = [[[[_surveys objectAtIndex:indexPath.row] objectForKey:@"content"] objectForKey:@"score"] intValue];
} else {
score = [[[[_otherSurveys objectAtIndex:indexPath.row] objectForKey:@"content"] objectForKey:@"score"] intValue];
}
cell.textLabel.text = [NSString stringWithFormat:@"Score: %d%%", score];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment