Jim Dovey

Results 20 comments of Jim Dovey

That's strange— I'm sure I've seen SVG working in the Kobo iOS app, and therefore in UIWebView.

The only option for UIWebView is to use the iOS 6 SDK and run the app in the simulator. You can then attach to each UIWebView instance from the Develop...

Stepping through this in the debugger usually sees it succeed, which sounds like a race condition to me. I've also noticed a similar issue in `TestManualClock.test_sleep()`, so I wonder if...

Actually, it seems the `test_sleep()` method fails most of the time when running all the tests in `TestManualClock`, but succeeds most of the time when running it on its own....

Yes, good catch— it should indeed be retained. I'll tweak it and push the changes. In fact, I think there might be some other similar changes in the Kobo app...

Even CBC is heading that way. The recommendation is going towards Galois/Counter Mode instead, although there aren't yet many implementations of that. Hopefully Apple will add it to CommonCrypto in...

Looks like the right fix to me— never trust the user ;o) On 2012-11-13, at 9:20 AM, rassol [email protected] wrote: > Crash with NSRangeException. > > Can be fixed by...

Hm, might have cropped up due to ARC migration. Right now I don't see anything wrong with the code-- presumably the ARC handler isn't correctly placing the calls to deallocate...

That's okay— I'll take a look later on today.

Absolutely: implement the -(CGRect)gridView:adjustCellFrame:withinGridCellFrame: method in your AQGridViewDelegate. That is passed the CGRect for the cell's default frame along with the CHRect of the logical bounding box within which it...