Re: Delays in awaking iOS app

2014-02-03 Thread Matt Neuburg
On Fri, 31 Jan 2014 15:09:37 +0700, "Gerriet M. Denkmann" said: >The real problem is: iOS 7 ignores the first tap (if it comes too soon after >applicationDidBecomeActive: - "too soon" meaning: less than about a second). >Whereas iOS 6 records and processes all taps. I've noticed often, just

Re: Mismatched viewWillAppear/viewDidDisapper calls possible?

2014-02-03 Thread Matt Neuburg
On Mon, 27 Jan 2014 20:15:37 -0800, Rick Mann said: >Should it ever be possible for there to be a mismatch between -viewWillAppear: >and -viewDidDisappear:? I suppose it is possible, since the docs say the >Appear methods aren't called in a popover in some circumstances (which I think >is reall

Re: Animation on gesturing

2014-02-03 Thread Matt Neuburg
On Sat, 25 Jan 2014 20:49:42 -0500, Eric Dolecki said: >The yahoo weather app does it for the iPad, you slowly swipe without releasing >and an animation is slowly moved through... It can be forward or reverse. How >exactly are they achieving that? Same goes for the iOS pull to refresh >animatio

Re: Mismatched viewWillAppear/viewDidDisapper calls possible?

2014-02-03 Thread Rick Mann
On Feb 3, 2014, at 10:42 , Matt Neuburg wrote: > On Mon, 27 Jan 2014 20:15:37 -0800, Rick Mann said: >> Should it ever be possible for there to be a mismatch between >> -viewWillAppear: and -viewDidDisappear:? I suppose it is possible, since the >> docs say the Appear methods aren't called in

Re: NSArrayController - Remove and immediately deallocate objects

2014-02-03 Thread Leonardo
I need to quickly deallocate the objects because they will freed up other objects. If these latest objects don't get deallocated they receive some message when they should not. So I really need to deallocate the objects in the right order. Regards -- Leonardo > Da: Graham Cox > Data: Mon, 3 Fe

Re: NSArrayController - Remove and immediately deallocate objects

2014-02-03 Thread Jens Alfke
On Feb 3, 2014, at 11:49 AM, Leonardo wrote: > I need to quickly deallocate the objects because they will freed up other > objects. If these latest objects don't get deallocated they receive some > message when they should not. So I really need to deallocate the objects in > the right order. Th

Re: Mismatched viewWillAppear/viewDidDisapper calls possible?

2014-02-03 Thread David Hoerl
Date: Mon, 03 Feb 2014 10:42:47 -0800 From: Matt Neuburg To: Rick Mann Cc: "cocoa-dev@lists.apple.com Dev" Subject: Re: Mismatched viewWillAppear/viewDidDisapper calls possible? Message-ID: Content-Type: text/plain; charset=us-ascii On Mon, 27 Jan 2014 20:15:37 -0800, Rick Mann said: Should

"App quit recording" notifications

2014-02-03 Thread Rick Mann
At least a couple apps I have let me know that they've quit doing what they were told to do in the background (e.g., Fog of World tells me that it quit recording, and I should launch it again). I assume they're posting local notifications when -applicationWillTerminate:. Is this correct, or is

Re: Delays in awaking iOS app

2014-02-03 Thread Gerriet M. Denkmann
On 4 Feb 2014, at 01:35, Matt Neuburg wrote: > On Fri, 31 Jan 2014 15:09:37 +0700, "Gerriet M. Denkmann" > said: >> The real problem is: iOS 7 ignores the first tap (if it comes too soon >> after applicationDidBecomeActive: - "too soon" meaning: less than about a >> second). >> Whereas iO