What is the real difference between UIView methods setNeedsLayout and setNeedsDisplay?
As usual documentation is foggy about this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Actually the documentation is pretty clear about this:
setNeedsLayout will layout subviews
setNeedsDisplay will call for a redraw of your view (
drawRect:, etc).