UIFont from a CSS definition
If you need to get a matching UIFont object from a CSS definition like "font-family: Arial; font-size: 24px; font-weight: bold;" you have no way to do it with the API that iOS provides for three reasons. First, there is a non-API method on UIFont called +(UIFont*)fontWithMarkupDescription:(NSString*)markupDescription; that could do the conversion/lookup most of the time. Using it will get your App rejected by Apple. Second, the only...
Read More