Is there a way to programmatically detect if a given font is serif or sans serif?
For example, if the user has selected Palatino it's serif. If the user selected Arial, it's sans serif.
I can detect the font name and family name. But I don't see a serif or san serif property for UIFont. Without this, I guess I'd have to set and track a isSerif BOOL manually for every font available to the user?