According to these comments, JSONKit does not support ARC, and not even running with fobjc-no-arc setting in an ARC environment: https://github.com/johnezang/JSONKit/issues/37
相关问题
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
相关文章
- 现在使用swift开发ios应用好还是swift?
- json_encode 没有把数组转为json
- Livy Server: return a dataframe as JSON?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Unexpected end of JSON input from an ajax call
- Where does a host app handle NSExtensionContext#co
You can still use JSONKit in your application with ARC.
I'm using it myself.
Select your project root in XCode 5, under
Targets
select your application then select theBuildPhases
tab. UnderCompile Sources
double-click JSONKit.m and add the following compiler flags-fno-objc-arc
.Hope it helps
Cheers
I use JSONKit in
ARC
project with the-fno-objc-arc
in the JSONKit.m file in the compile Source settings.And just some of the posts you linked to in your question already say it works.