I know this is a very simple question but I have been struggling with it for a while. I have read a few threads but still can seem to find the answer.
I am trying to add this DDMathParser library to my existing project. The math parser documentation states
"Simply copy the "DDMathParser" subfolder into your project, #import "DDMathParser.h", and you're good to go."
I added the subfolder to my project and added the header `#import "DDMathParser.h' to my first view controller. At first Xcode was stating that it can't find the file. I took the advice from another thread and changed my header to include the folder
#import "DDMathParser/DDMathParser.h"
Xcode seems to find the folder and header file but when I run a test from the documentation such as
NSLog(@"%@", [@"1 + 2" numberByEvaluatingString]);
I am getting the error 'Thread 1: Program received sginal: "SIGABRT"' I can see in the DDMathParser sample file that there is a target, I am wondering if this is my problem.
To clarify the question I am trying to add the DDMathParser library to a simple view controller and run the staement NSLog(@"%@", [@"1 + 2" numberByEvaluatingString]);
Any help/clarification in doing so would be greatly appreciated.