I have a code which worked just fine until I built my project with iOS 7.1. Before, the text correctly showed on PDF page.
[strSomeText drawInRect:rectForText withAttributes:[NSDictionary dictionaryWithObjectsAndKeys:font, NSFontAttributeName, mutParagraphStyle, NSParagraphStyleAttributeName, colorRed, NSForegroundColorAttributeName, nil]];
But now, everything in formatting dictionary is being disregarded. The PDF document shows black text of default font and size.
Thank you for responses.