-3

I'm using JSONKit Objective-C library.

But its causing an error in JSONKit.m while I compile the source.

I've used -fno-objc-arc compiler flag to compile non-arc code.

The error is inside JSONKit.m file, pointing to the filepath/NSString (isa).

What should I do to avoid this error.

Randika Vishman
  • 7,983
  • 3
  • 57
  • 80
Venkat
  • 1
  • 4
  • 1
    Why you using the old framework which is not continue for development. if you are looking for JASON parsing go for native one, also if you still wants to go ahead add the code always for that you are trying to do. – Retro May 22 '15 at 12:55
  • Venkat, please use the exact file name while writing the question. Secondly, can you copy-paste the exact error here in your question? – Adil Soomro May 22 '15 at 13:41

1 Answers1

2

Please use native class NSJSONSerialization for parsing JSON its more helpful rather than relying on third party components.

Bug Hunter Zoro
  • 1,743
  • 18
  • 21