My project demands that I use a custom Font, but this font have strange images in some characters like ( ) , . / etc...
The design agency said to replace the font in these characters to a more common font like Gill Sans.
So in a NSString = @"(My Favorite's. Love this!)";
I need to have the main custom font for the text and the Gill Sans font for the ( ' . ! and )
Is there a code where I can just pass the string and it returns some NSString with NSAttributedString with the font changes?
Thanks,