CocoaPods was a way for me. My subfile is as follows:
pod 'CocoaSoundCloudAPI', '1.0.1' pod 'CocoaSoundCloudUI', '1.0.5' pod 'JSONKit', :podspec => 'https://gist.github.com/marcdown/5282955/raw/2a52cfd92f112f2a52669420c82c1bb1efd15d2a/JSONKit.podspec'
At the time of this posting, podspec is choosing version 1.6.0. In earlier versions of JSONKit, I had problems with some issues with older versions. If you abandon the module for JSONKit, an earlier version containing these problems is installed by Cocoapods.
I also had to disable ARC for the JSONKit module in the build settings in order to disable ARC errors:
Pods-JSONKit → Build Settings → Apple LLVM 6.0 - Language - Target C
It did it for me.
source share