how to use modulus operator with NSExpression? If i use
NSExpression *exp = [NSExpression expressionWithFormat:@"3%2"];
I'm getting an error — *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unable to parse the format string "3%2 == 1"'.
Can anyone explain how to correctly use modulus operator with NSExpression? An example would be great!