Skip to content

Instantly share code, notes, and snippets.

@yarneo
Created February 6, 2016 19:46
Show Gist options
  • Save yarneo/6c983b29020a7b215282 to your computer and use it in GitHub Desktop.
Save yarneo/6c983b29020a7b215282 to your computer and use it in GitHub Desktop.
NSDictionary *dogBreeds = @{@”Bugsy” : @”Pug”,
@”Marcelle” : @”Chow Chow”,
@”Daisy” : @”Labrador”;
NSString *name = @"Chloe's breed is: ";
NSString *breed = dogBreeds[@"Chloe"];
/* Crash at runtime because breed is null */
NSString *message = [name stringByAppendingString:breed];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment