[iOS] View Update Cycle(2) - layout, constraints, display
2022. 11. 19. 16:57
iOS/iOS
지난 포스팅에서 Main Run Loop과 Update Cycle에 대해 알아보았다. 이 Update Cycle은 view들을 layout, constraints, display 하는 작업을 담당하였다. Auto Layout에서 이들은 3단계를 거치게 되는데 Constraints: 시스템은 모든 constraints를 계산하고 설정한다. Layout: View의 배치하고, subview를 배치한다. Display: 필요한 경우 다시 그린다. 이번 포스팅에서는 layout, constraints, display가 어떻게 진행되고, 어떠한 메서드들이 있는지 알아보자 Layout view들의 position과 size들을 의미한다. view들의 Layout 변화는 layoutSubViews() 메서드에서 진행..