I am creating an application that is intended to run on 4.2+ ios devices. For aesthetic reasons, by default I would like to use Noteworthy font that has replaced Chalkboard font since iOS 4.3. I assume that in iOS 4.2 Noteworthy font is not available and I have to fallback to another font if user is running this version of the system? What is the best approach to do the fallback? Should i use
(UIFont *)fontWithName:(NSString *)fontName size:(CGFloat)fontSize
and check for nil return value?
Can I use noteworthy in my xib file or would doing so crash 4.2 device?