Skip to content

Instantly share code, notes, and snippets.

@PaulChana
Last active August 29, 2015 14:24
Show Gist options
  • Save PaulChana/c6c81485e91f5c086d20 to your computer and use it in GitHub Desktop.
Save PaulChana/c6c81485e91f5c086d20 to your computer and use it in GitHub Desktop.
Objective-C Literals
// Numbers
NSNumber *x = @(3.14);
// Arrays
NSArray *a = @[@"a", @"b", @"c"];
// Dictionary
NSDictionary *d = @{ @"key" : @"Loris",
@"name" : @"Joris",
@"n" : @"Boris" };
// Dictionary of enums
NSDictionary *de = @{ @(enumType0) : @"Loris",
@(enumType1) : @"Joris",
@(enumType2) : @"Boris" };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment