Daniel Amitay

Results 25 comments of Daniel Amitay

Thanks for bringing this to my attention. I do not have access to a physical iOS5 device at the moment, but will debug when I am able to.

@Jhonny12345 is this occurring when you build to your device locally, or when running your app downloaded from the App Store? Unfortunately SKStoreProductViewController doesn't work in non-AppStore apps. This is...

Per @kylef, 5352d1ff fixed @appcominteractive 's example. Can one of you guys provide a reproducible demo and post it here?

Yeah I should make it more explicit that `DAKeyboardControl` really should be balanced by calling `-(void) removeKeyboardControl`. I would certainly like to find a hook that can do this automatically,...

I'll run through my full dataset and push it later. Because I wanted my dataset to be accurate and without the possibility of 3rd party manipulation, I grabbed data directly...

My original implementation involved dynamically producing a list of URL schemes on the server (filter schemes via the device model and system version), testing those schemes, and then sending back...

It wouldn't actually reduce the size, however. Even if your app is iPhone-only, when it is run on an iPad, you should still be checking for iPad-only schemes--so you _should_...

I'm confused? My point was that _none_ of the values can be omitted. Even if your app was only built/compiled for iPhone, when it runs on an iPad, it should...

Are you ever calling `- (void)removeKeyboardControl;`? When you call `addKeyboardPanningWithActionHandler:`, it stores the block using `objc_setAssociatedObject`. To release this from memory by setting it to `nil`, you need to call...