Possible Duplicate:
What is a fast C or Objective-C math parser?
I have a NSString which represents a calculation eg. @"(10+10)*2"
and I want to evaluate the string as if it was actually something like this;
double result = (10+10)*2;
What is the most straightforward approach to take in iOS?