ios - Using SBJson in a non-ARC project -


i developing ios application, using sbjson library. don’t use arc on project, , previous sbjson releases didn't use it, either.

but sbjson uses arc , have upgrade latest sbjson release. viewed sbjson classes , saw this:

#if !__has_feature(objc_arc) #error "this source file must compiled arc enabled!" #endif 

how can upgrade sbjson in project?

you have use compiler flags enable , disable arc particular files in project.

please find more information in official notes transitioning arc release notes


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -