Search Results

20
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

You can use #pragma mark Foo as a way to organize methods in your source files. When browsing symbols via the pop up menu, whatever you place in "Foo" will appear …
3
votes

RubyCocoa, what’s the point?

One reason I use scripting languages in my Cocoa apps is for using function closures (specifically from JavaScript). They make doing asynchronous programming much easier, and as a result I tend to …