UIStackView https://developer.apple.com/documentation/uikit/uistackview 스토리보드로 UI를 구성할 경우, constraint 같은거 설정하기가 편하지만 Code base 로 UI를 구현할 경우, 굉장히 복잡하고 까다로워진다. 이럴 때 StackView를 잘 사용하면 한결 편하게 화면을 구성할 수 있는 것 같다. let stack = UIStackView() stack.axis = .horizontal stack.spacing = 8 stack.distribution = .fill stack.alignment = .leading stack.layoutMargins = UIEdgeInsets(top: 16, left: 16, bottom: 16, ri..