Debugging an unresponsive iPhone UI

Posted by buggles on Stack Overflow See other posts from Stack Overflow or by buggles
Published on 2010-02-14T16:27:09Z Indexed on 2010/03/18 20:01 UTC
Read the original article Hit count: 356

Filed under:
|
|

I have an application that needs to update its display every minute or so. To achieve this I was using performSelector:withObject:afterDelay, calling the selector that most of the time just changes some text in a label based on a very simple (and quick) calculation.

[self performSelector:@selector(updateDisplay) withObject:nil 
     afterDelay:60];

Occasionally during an update, I have to go off and get some data from the web, and so I do that in another thread using detachNewThreadSelector. That all worked and the "performSelector after Delay" call completes in a tiny fraction of a second, and only runs once a minute. Despite this, and despite running fine on the simulator, the single button in the app is largely unresponsive, not responding to multiple stabs.

So, I had assumed peformSelector:afterDelay would not block, but I'm now wondering if it is blocking in some way? I even tried NOT doing the web-look-up incase this was somehow still impacting the responsiveness. No joy.

[NSThread detachNewThreadSelector:@selector(updateFromURL) 
    toTarget:self withObject:nil];

I then pushed it through shark to see if I could see anything obvious. From here I can see the web-lookup is the only thing taking any time, but it is only being done every couple of minutes, and then clearly not running on the main thread. The app itself is consuming a tiny fraction of 1% of the CPU (0.0000034%) over 20 minutes, so it just must be a blocking issue.

So, am I missing something about performSelector:afterDelay? What other common newbie mistakes might I be making. If it helps, although I've been developing applications for over 20 years, the previous 10 have been largely Java. Perhaps I have a Java assumption loaded :-) Essentially I have assumed the main thread is like the EDT (only do UI stuff on it, but keep everything else off it).

© Stack Overflow or respective owner

Related posts about iphone

Related posts about ui