Skip to content

Instantly share code, notes, and snippets.

@afrael
Created July 15, 2011 03:42
Show Gist options
  • Save afrael/1084018 to your computer and use it in GitHub Desktop.
Save afrael/1084018 to your computer and use it in GitHub Desktop.
Objective C float creation helper
#define FLT(x) [NSNumber numberWithFloat:x]
// use as
NSArray *keys = [NSArray arrayWithObjects: FLT(-2.0), FLT(-1.85), FLT(-1.75), nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment