JSONKit
JSONKit copied to clipboard
Deprecation: array->isa = _JKArrayClass; (and dictionary too)
There are two deprecations.
OK to fix like this?
// http://stackoverflow.com/a/14590684/129202 object_setClass(array, _JKArrayClass); // was deprecated: array->isa = _JKArrayClass;
// http://stackoverflow.com/a/14590684/129202 object_setClass(dictionary, _JKDictionaryClass); // was deprecated: dictionary->isa = _JKDictionaryClass;
+1, works for me
it worked for me also
You can configure
Pods-> targets(JSONKit ) -> Build Settings-> Apple LLVM 6.1 - Warnings - Objective C -> Direct usage of 'isa' to NO.
All compiling errors disapear. It's a temporarily quickly soluton.