I know this is a very simple question, but I'm struggling a bit with it. I read a few topics, but can still find the answer.
I am trying to add this DDMathParser library to my existing project. In the math analyzer documentation
"Just copy the" DDMathParser "subfolder into your project, #import" DDMathParser.h ", and you're good to go."
I added a subfolder to my project and added the `#import 'DDMathParser.h' header to my first view controller. At first, Xcode claimed that it could not find the file. I took advice from another thread and changed my title to include a folder
#import "DDMathParser/DDMathParser.h"
Xcode seems to find the folder and header file, but when I run the test from the documentation, such as
NSLog(@"%@", [@"1 + 2" numberByEvaluatingString]);
I get the error message "Thread 1: received sginal program:" SIGABRT "" I see in the sample DDMathParser file that there is a goal, I wonder if this is my problem.
To clarify the issue, I am trying to add the DDMathParser library to a simple view controller and run staement NSLog(@"%@", [@"1 + 2" numberByEvaluatingString]); Any help / clarification would be greatly appreciated.
source share