I need to state whether a modulus value = zero.
For example:
if (textField.floatValue % 10 == (0)) {
What's wrong with my syntax?
You can't use % with floating point values. Instead, use fmod() on
doubles (CGFloat on 64-bit) and fmodf() on singles (CGFloat on 32-
bit). See the man page for details.