vchav73

Results 8 comments of vchav73

If you're using JSONKit I suggest you consider migrating to Apple's NSJSONSerialization. It does what JSONKit does, but according to the article below it's faster. Unlike JSONKit, it's also being...

Thanks for the warnings about NSJSONSerialization on iOS 5.x. I ran some quick benchmarks (JSONKit vs NSJSONSerialization) on both an iPhone 3GS using iOS 5.1.1 and an iPad 2 using...

I'll add iOS 7 to the mix once it's released. Based on this (and the comment about NSJSONSerialization being buggy in 5.x) I'll be using NSJSONSerialization for iOS 6 and...

I researched this. Seems isa holds the class for the object. The warnings can be eliminated by replacing the offending lines with: object_setClass(dictionary, _JKDictionaryClass); // Dictionary case object_setClass(array, _JKArrayClass); //...

I have the object_setClass fix in production. I haven't measured the performance impact, but saw the notes below in the comments of JSONKit.m, which makes me believe that the change...

Changing the config worked! I'm able to receive broadcast AM now. The frequency scale is even correct. Can I configure direct sampling as a separate RF source or will I...

Thanks for the info. Pretty cool to hear you're planning on Tx support. I'll look at the code and see if I can make the changes (adding a checkbox) myself....