Should I be writing CGFloat values with postfix f
or not?
CGFloat fValue = 1.2;
vs.
CGFloat fValue = 1.2f;
I know that this postfix define a float value. But is it necessary, does it make sense, are there any performance differences between using those two or is this just visual presentation so you can quickly define value type (e.g. float in this case)?