Skip to content

Instantly share code, notes, and snippets.

@bleft
Created March 11, 2014 12:16
Show Gist options
  • Save bleft/9484450 to your computer and use it in GitHub Desktop.
Save bleft/9484450 to your computer and use it in GitHub Desktop.
NSMutableString: appendStringOrEmpty
- (void)appendStringOrEmpty:(NSString*)string{
if (string) {
[self appendString:string];
} else {
[self appendString:@""];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment