I have a CGFloat value which I want to round to 3 digits after the decimal point. How should I do this?
Thanks.
myFloat = round(myfloat * 1000) / 1000.0;