Skip to content

Adding DDMathParser to your project

Dave DeLong edited this page Oct 7, 2011 · 3 revisions

Simply copy the "DDMathParser" subfolder into your project, #import "DDMathParser.h", and you're good to go. A demo target is included as part of the project. It shows how to evaluate a user-entered string, with support for variables.

Alternatively, you can add DDMathParser as a submodule to your git repository, which will make it very easy to stay on top of the latest changes. This question on StackOverflow.com has an excellent write-up on how to do that.

Compatibility

Supported OS versions:

  • iOS 4 and later
  • OS X 10.6 and later

Memory management modes

DDMathParser is compatible with all memory management models (MRC, ARC, and GC) from a single code base. It is unnecessary to use the ARC migration tool.

Compilers

DDMathParser has been tested with the latest versions of the LLVM-GCC and Clang compilers.