I have a CGFloat value which I want to round to 3 digits after the decimal point. How should I do this?
Thanks.
Try formatting the float as "%5.3f" or similar for display purposes
...like Zach Langley did in his better answer.