5
votes
Howto articles for iPhone development, Objective C
While you do have to agree to an NDA to get the iPhone SDK, you don't have to physically sign an agreement and send it in, or pay money just to download the SDK. You can sign up for a free Apple D …
2
votes
Understanding reference counting with Cocoa / Objective C
If you're writing code for the desktop and you can target Mac OS X 10.5, you should at least look into using Objective-C garbage collection. It really will simplify most of your development — that …
10
votes
How do you name your instance/param values?
Most Cocoa projects use underbar as a non-IBOutlet instance variable prefix, and use no prefix for IBOutlet instance variables.
The reason I don't use underbars fo …
1
vote
How do you name your instance/param values?
Andrew: There actually are plenty of Cocoa developers who don't use instance variable prefixes at all. It's also extremely common in the Smalltalk world (in fact, I'd say it's nearly unheard-of in …
1
vote
Cocoa - best way to capture key events in NSTextView?
It's important to tell us what you're really trying to accomplish — the higher-level goal that you think capturing key events in an NSTextView will address.
For example, when someone asks m …
2
votes
1
vote
5
votes
Any ReSharper equivalent for Xcode?
Xcode has refactoring for C and Objective-C built in. Just select what you'd like to refactor, choose "Refactor..." from either the menu bar or the contextual menu, and you'll get a window includi …
8
votes
What does the @ symbol represent in objective-c?
The @ character isn't used in C or C++ identifiers, so it's used to introduce Objective-C language keywords in a way that won't conflict with the other languages' keywords. This enabl …
13
votes
What’s the difference between a string constant and a string literal?
In Objective-C, the syntax @"foo" is an immutable, literal instance of NSString. It does not make a constant string from a string litera …
21
votes
Objective-C: Passing around sets of data
You're on the right track.
Cocoa's collection classes — which all have mutable an immutable variants — are:
NSArray: ordered, can contain an object multiple times
NSD …
48
votes
What is the best way to unit test Objective-C code?
Xcode includes OCUnit, an Objective-C unit testing framework, and support for running unit tests (OCUnit or otherwise) as part of y …
4
votes
NSEnumerator performance vs for loop in Cocoa
Using the new for (... in ...) syntax in Objective-C 2.0 is generally the fastest way to iterate over a collection because it can maintain a buffer on the stack and get batches of item …
4
votes
Cocoa tips for PHP developers?
Yes, you're really best off learning C and then Objective-C. There are some resources that will get you over the C and Objective-C language learning curve:
Uli Kusterer's online book …
2
votes
What is the best book for learning objective-c?
For someone with a C# or Java background, and a basic understanding of C, start with Apple's own free online book …
