Debugging an unresponsive iPhone UI
- by buggles
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
…