Reputation: 1611
I am getting below error when I try to compile my project in Xcode.
Undefined symbols for architecture i386:
_OBJC_CLASS_$_SBJsonParser
referenced from: …
I tried following but still the problem persists? Appreciate any help.
NSObject+SBJSON.m
" and "NSString+SBJSON.m
" files and added back to Compile sources of Build Phases.-all_load
linker flag Upvotes: 3
Views: 2097
Reputation: 3272
Make sure you add SBJsonWriter.m, SBJsonParser.m, and SBJsonBase.m into the Compile Sources build phase for your target.
Upvotes: 6