Venkat
Venkat

Reputation: 1

xcode error - Jsonkit.m file

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.

Upvotes: -3

Views: 172

Answers (1)

Bug Hunter Zoro
Bug Hunter Zoro

Reputation: 1915

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

Upvotes: 2

Related Questions