6
votes
How do I profile how long a piece of code takes to execute in Objective-C/Cocoa for optimization purposes
Unless one of these two pieces of code is already in your app, and you've already profiled your app's overall performance to determine that the existing code is a major bottleneck, …
4
votes
26
votes
Create a cross platform Windows, Mac OS X application
It's good that you're thinking of portability early on - it's vastly more difficult to "bolt it on" after the fact.
There are various cross-platform kits available, but IMHO all of them fal …
7
votes
What are alternatives to Objective-C for Mac programming?
You shouldn't be intimidated by Cocoa's retain/release reference counting. It's much, much easier in practice than GC fans would have you believe. The …
2
votes
How do you develop an application to draw, edit and save UML models in Cocoa?
Have you looked at the Sketch example project, found in /Developer/Examples/AppKit? It should get you at least halfway to where you're going.
…
