TextExpander NSLocalizedString Snippet - Collin Donnell
I’ve just stared using text expander and most of the items i’ve created are for xcode. Seems handy!
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:
...