I've a CTFontRef variable.
CTFontRef aFontRef;
Getting Size of Font was easy :
CGFloat aFontSize = CTFontGetSize(aFontRef);
Please help me in retrieving the FontName. I'm expecting the FontName to be something like MarkerFelt-Wide.
But, when I use methods like
CTFontCopyFullName(aFontRef)
I get Marker Felt Wide
Cheers Roshit