Objective-C literals for NSDictionary, NSArray, and NSNumber
cocoaheads.tumblr.com
Objective-C literals for NSDictionary, NSArray, and NSNumber
1–10 of 58 posts
Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#2Also included:
- Automatic @synthesize
- NSArray/NSDictionary subscripting, eg id object=MyArray[12];Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#3Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#4These are all good changes (well, except for garbage collection, but hey, they kicked that out with ARC anyway), but it really is hard to stay up-to-date. Yeah, I know, woe is me, my tools supplier is constantly supplying better free tools, but it is daunting having to review each of this evolutions, and determine if it is worth the effort to integrate it into my project.
Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#5The definition of ObjC confuses me a bit. It's said to be a superset of C - but which C? C89? C99? GNU-C-Something?
Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#6Does this come courtesy of a new version of the Objective-C language? The definition of ObjC confuses me a bit. It's said to be a superset of C - but which C? C89? C99? GNU-C-Something?
Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#7ugh. As much as I love the changes that Apple have been making to Objective-C, as someone with a rather large - first-time project undrway, the pace of change is just killing me. In the last three years we have seen blocks (and Grand Central Dispatch) and garbag collection, Automatic Reference Counting, and now this. These are all good changes (well, except for garbage collection, but hey, they kicked that out with A…
Well, you don't really _need_ to; this one is just syntactic sugar, and the others, while nice (or mostly; I'm unconvinced about ARC), are not necessary. I'd prefer to have the options.
Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#8ugh. As much as I love the changes that Apple have been making to Objective-C, as someone with a rather large - first-time project undrway, the pace of change is just killing me. In the last three years we have seen blocks (and Grand Central Dispatch) and garbag collection, Automatic Reference Counting, and now this. These are all good changes (well, except for garbage collection, but hey, they kicked that out with A…
Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#9Re: Objective-C literals for NSDictionary, NSArray, and NSNumber
#10Nice. I wish for ability for function to return multiple values. Is it possible at all?