Skip to content

Instantly share code, notes, and snippets.

@flagoworld
Last active August 29, 2015 14:15
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 flagoworld/5bce88c063d8d8c6d3b5 to your computer and use it in GitHub Desktop.
Save flagoworld/5bce88c063d8d8c6d3b5 to your computer and use it in GitHub Desktop.
lol
NSDictionary *cases = @{
@"name": ^{
return field.name;
},
@"type": ^{
return field.typeString.lowercaseString;
}
}
void (^block)() = cases[ident];
if(block) {
return block();
} else {
return @"";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment