Skip to content

Instantly share code, notes, and snippets.

@bjhomer
Created February 8, 2012 16:00
Show Gist options
  • Save bjhomer/1770660 to your computer and use it in GitHub Desktop.
Save bjhomer/1770660 to your computer and use it in GitHub Desktop.
NSString *a = [NSString stringWithFormat:@"hi %@", @"there"];
NSMutableString *b = [NSMutableString stringWithString:@"hi"];
[b appendString:@" there"];
NSLog(@"[a isEqual:b]: %d", [a isEqual:b]); // 1
NSLog(@"[b isEqual:b]: %d", [b isEqual:a]); // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment