I using Xcode 5.0 and i want to use jsonKit to parser content, but i can't find where to place :
-fno-arc-objc
It will display :
if __has_feature(objc_arc) error JSONKit does not support Objective-C Automatic Reference Counting (ARC) endif
Well, I did add the JSONKit classes (JSONKit.h & JSONKit.h) but in the .m file, I have a lot of warnings & compil's error's. I using refactor to convert to objective-c arc but it seem not OK..
Beware that there is a strange glitch depending on where the settings window is loaded :
fno-objc-arcflag to the compiler options. But why are you using JSONKit when you can useNSJSONSerializationwhich is "built-in" (in the sense that it's part of the Foundation framework available by default)? - user529758