Search Results

6
votes

What Cocoa/Core Foundation helper functions do you wish you knew about 2 years ago?

I've found NSStringFrom*() helpful when logging structs like CGRect, CGPoint, etc. You can find a comprehensive overview at Apple's …
4
votes

Objective-C Singleton instance as a static?

I believe it is so that the variable can't be accessed from outside the file for which it is defined. Otherwise it would be globally accessible. This enforces that a client must …