I'm trying to resolve a spacing issue while drawing to a PDF. In debugging, I am watching the method that constructs a rectangle for my string (see below). As I watch the values in the debugger, they go from nice float values (ie., 30.0) to what you see in the image below, before the method returns its values. What is going on? Why, for example, does x become 1.4013e - 45?
CGRect renderingRect = CGRectMake(kBorderInset + kMarginInset + widthOfPrevious, kBorderInset + kMarginInset + 50.0 + heightOfPrevious,stringSize.width, stringSize.height);
return renderingRect;
Please see the value for renderingRect: