Upon importing the JSONKit.h and JSONKit.m files into my project , i get the following errors. I have browsed and browsed but none seems to have encountered these problems ?
All i did was import the files and build and then i get this
Is it something i forgot to import or ...??????
You can disable ARC(automatic reference count) in JSONKit files.
Generally step is :
Please refer to this post: iOS 5 Best Practice (Release/retain?) for more details.
Hope it helps.
Edit
After discussion, we also have some other options to solve the problem. For example, you can convert JSONKit to ARC compatible. But according to Mike Weller
's statement, it will be very hard to convert because JSONKit uses malloc
to manage memory.
I think use -fno-objc-arc
compiler flag is a low-risk and convenient way to solve the problem.
tangqiaoboy's answer will resolve those errors but you can also consider using the class NSJSONSerialization. It makes it really easy do convert NSDictionarys and NSArrays to JSON and vice-versa.
Good luck!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With