5
votes
Java Developer meets ObjectiveC on Mac OS
Having purchased both of the books in your question, I recommend Cocoa Programming for Mac OS X as a quick way to learn the language and the Cocoa framework, and is probably the fastest way to star …
1
vote
Objective-C switch using objects?
I hope you'll all forgive me for going out on a limb here, but I would like to address the more general question of parsing XML documents in Cocoa without the need of if-else statements. The questi …
9
votes
Objective C for Windows
Expanding on the two previous answers, if you just want Objective-C but not any of the Cocoa frameworks, than gcc will work on any platform. You can use it through Cygwin or get MinGW. However, if …
17
votes
Sending a message to nil?
Well, I think it can be described using a very contrived example. Let's say you have a method in Java which prints out all of the elements in an ArrayList:
void foo(ArrayList list)
…
6
votes
Generating Random Numbers in Objective-C
According to the manual page for rand(3), the rand family of functions have been obsoleted by random(3). This is due to the fact that the lower 12 bits of rand() go through a cyclic pattern. To get …
4
votes
What is the best way to solve an Objective-C namespace collision?
If you do not need to use classes from both frameworks at the same time, and you are targeting platforms which support NSBundle unloading (OS X 10.4 or later, no GNUStep support), and performance r …
