Is it possible to add a UILabel to a CALayer without subclassing and drawing it in drawInContext:?
UILabel
CALayer
drawInContext:
Thanks!
Add a CATextLayer as a sublayer and set the string property. That would be easiest and you can easily use a layout manager to make it very generic.