-
-
[Flash 9 is required to listen to audio.]
-
[Flash 9 is required to listen to audio.]
-
-
-
-
-
CocoaHeads: Objective-C literals for NSDictionary, NSArray, and NSNumber →
Objective-C literals: one can now create literals for NSArray, NSDictionary, and NSNumber (just like one can create literals for NSString)
NSArray Literals
Previously:
array = [NSArray arrayWithObjects:a, b, c, nil];Now:
array = @[ a, b, c ];NSDictionary Literals
Previously:
...
