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 …
2
votes
App crash when trying to access a subclass method after the object was initialized ( init ) using the parent initializer
NSArray is a class cluster. To create a new subclass w …
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
Have you ever been barking up the wrong tree for hours?
Wrong tree? Hours? Try barking in the wrong forest, for a month. :-(
Early in CamelBones' development, I discovered that I had a need to take arguments pas …
1
vote
How do I cast id to a float?
The compiler makes that kind of assumptions when multiple classes declare methods with the same name, that return different types. Since your "item" variable is typed as an "id," the compiler doesn …
