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
Post a Comment