I'm using this class and have found it extremely useful
In my setup, there's one thing I've noticed that causes this class to crash when it is released. I've modified the code quite a bit since getting it, but I figured some of you might be running into the same issue, so I post it here.
The 'loadView' method is setting the label's layer's delegate to self. The SDK documentation says this is explicitly prohibited for CALayers, and should only be set to the main view (which would be label, not the controller). This was causing me to crash on deallocation of this instance. To fix, I set:
label.layer.delegate = nil;
in my deallocation method.
Hope this helps someone... took me a day to nail it down.