Tag Archives: objective-c
Blocks to remove redundancy
Blocks have many complicated uses, from event-based code to multithreading. But they can also be used for very trivial tasks, such as removing redundant lines from code. Here’s a common operation for me: Split a list into sublists based on … Continue reading
Old content, but I just needed it now: The difference between foo() and foo(void) by Greg Miller. Hint: Objective-C doesn’t follow the C++ pattern. You probably want foo(void).
Cocoa With Love (Matt Gallagher): Assign, retain, copy pitfalls in Objective-C.
Martin Pilkington (Code Collector Pro) on Objective-C 2.2 features. He covers the code reduction features of the new runtime. These are coming to “modern” Apple runtimes, meaning 64-bit Mac and iPhone.
Chris Hanson on Objective-C 2.0′s dot syntax. When to use it, when to not use it, and what it’s really there for.
Matt Gallagher: Rules to avoid retain cycles
Michael Fey: UIView setup easier. I’ve done similar; very helpful.
On Leaky Abstractions and Objective-J.
WarpedVisions on Objective-C, square 1
Bruce over on WarpedVisions writes on entering the world of Objective-C and Cocoa development. I’m barely past square one, but I found this an interesting title. Of course, what Bruce means is the whole Mac OS X development experience, but … Continue reading