Skip to content

Instantly share code, notes, and snippets.

@richleland
Created May 30, 2009 05:10
Show Gist options
  • Save richleland/120385 to your computer and use it in GitHub Desktop.
Save richleland/120385 to your computer and use it in GitHub Desktop.
NSString *boolString(BOOL yesNO)
{
if(yesNo == NO) {
return (@"NO");
} else {
return (@"YES");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment