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

Calling setNeedsDisplay continuously slows down the other subviews. This is my code:

if (_recording){
    [self performSelector:@selector(setNeedsDisplay) withObject:nil afterDelay:delayRemaining >1.0 ? delayRemaining : 0.1];

}

Please help.

share|improve this question

closed as not a real question by 0x7fffffff, Ilmari Karonen, msgambel, Jack Humphries, Janak Nirmal Jan 21 at 4:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Joke -- Deh yeh haz teh codez?

Assuming self is a UIView object, you are calling -setNeedsDisplay which reloads your whole view and every subview inside it. So this will generally be a slow process with many subviews. Also, what is self, it will have to be a UIView, but you are saying this process slows down other subviews, which subview are you singling out?

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.