Skip to content

Instantly share code, notes, and snippets.

@niw
Created July 30, 2018 18:09
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 niw/c68db4e4e3b7f730dac90365181d28e4 to your computer and use it in GitHub Desktop.
Save niw/c68db4e4e3b7f730dac90365181d28e4 to your computer and use it in GitHub Desktop.
@import Foundation;
int main() {
NSMutableString *s = [[NSMutableString alloc] initWithString:@"🐱"];
[s replaceCharactersInRange:NSMakeRange(1, 1) withString:@"a"];
NSLog(@"%@", [s dataUsingEncoding:NSUTF8StringEncoding]); // nil
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment