Skip to content

Instantly share code, notes, and snippets.

@corinnekrych
Created June 3, 2013 09:56
Show Gist options
  • Save corinnekrych/5697216 to your computer and use it in GitHub Desktop.
Save corinnekrych/5697216 to your computer and use it in GitHub Desktop.
if ([self.task objectForKey:@"project"] != nil) {
//dateCell.textLabel.text = [self.task objectForKey:@"project"];
dateCell.textLabel.text = [NSString stringWithFormat:@"Poject %@", [self.task objectForKey:@"project"]];
}
@cvasilak
Copy link

cvasilak commented Jun 3, 2013

dateCell.textLabel.text = [[self.task objectForKey:@"project"] stringValue];

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