I have a strange result with float operation:
float a = myView.frame.size.height / 2.0;
float b = (myFrame.size.height / 2.0);
float c = a-b;
in debug mode: a = 201; b = 201; c = -3.05176e-05 ???
Why??
I have a strange result with float operation:
float a = myView.frame.size.height / 2.0;
float b = (myFrame.size.height / 2.0);
float c = a-b;
in debug mode: a = 201; b = 201; c = -3.05176e-05 ???
Why??