Frage

Currently i am working in iPhone application, Using Storyboard to create JSONParser, Import JSON Library inside the application, then i have add #import JSON/JSON.h inside ViewController.h file, but the error comes in "file not found", and JSON Framework classes error in release because i am using RFC, so how to fix this issues, please help me, i am only hope you

Thanks in Advance

Inside JSON Framework classes error found here

JSON Framework classes error

War es hilfreich?

Lösung

Your project uses ARC, but the JSON library doesn't. You need to disable ARC for the library files. To find out how, see this question: How can I disable ARC for a single file in a project?, or this one: ios5 ARC what is the compiler flag to exclude a file from ARC?

Andere Tipps

the error you are getting is ARC issue. your project is ARC enabled , but the JSON framework is not using ARC.

you can disable the ARC in your whole project, or use it for single file . see

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top