Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

One of my views implements drawRect with custom drawing code. The painting depends on some internal variables. When my controller changes that variables, it calls setNeedsDisplay, but it seems sometimes doesn't work. However, if I add something like this:

  • (void)onTimerFired { // change view variables here [self setNeedsDisplay]; [self performSelector:@selector(hesitateUpdate) withObject:nil afterDelay:0.1]; }

  • (void)hesitateUpdate { [self setNeedsDisplay]; }

It seems to work. I copied that code from: http://www.raywenderlich.com/2134/core-graphics-101-glossy-buttons But I don't understand the reason. Do you know why that code is using performSelector? Reading Apple docs it seems to me that after updating your variables you only have to call setNeedsDisplay. What do you think? Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.