Tag Archives: beginner

Handy UIKit Debugging Functions

I don’t know how many times I had typed something like

before I discovered that UIKit has the following handy string conversions functions

Reference UIKit Function Reference

Posted in Code Snippets | Tagged , , , | Leave a comment

The init and dealloc idioms.

For C++ programmers the first surprise waiting for them in Objective-C is that in a derived class they must explicitly call the init and dealloc methods of the superclass (roughly the equivalent of a constructor and destructor). By following the … Continue reading

Posted in Objective-C | Tagged , , , | Leave a comment