Closed hamsik22 closed 2 days ago
UIStackView을 사용해서 4개의 버튼을 모아 가로 스택 뷰 구현
UIStackView
UIButton
font = .boldSystemFont(ofSize: 30)
backgroundColor = UIColor(red: 58/255, green: 58/255, blue: 58/255, alpha: 1.0)
frame.size.height = 80
frame.size.width = 80
layer.cornerRadius = 40
horizontalStackView
axis = .horizontal
backgroundColor = .black
spacing = 10
distribution = .fillEqually
horizontalStackView AutoLayout
height = 80
func makeHorizontalStackView(_ views: [UIView]) → UIStackView 와 같은 형태로 horizontalStackView 를 생성하는 메서드를 정의해두면 좋습니다. 똑같은 스택뷰 4줄이 필요하기 때문
func makeHorizontalStackView(_ views: [UIView]) → UIStackView
개요
UIStackView
을 사용해서 4개의 버튼을 모아 가로 스택 뷰 구현UIButton
속성font = .boldSystemFont(ofSize: 30)
backgroundColor = UIColor(red: 58/255, green: 58/255, blue: 58/255, alpha: 1.0)
frame.size.height = 80
frame.size.width = 80
layer.cornerRadius = 40
horizontalStackView
속성axis = .horizontal
backgroundColor = .black
spacing = 10
distribution = .fillEqually
horizontalStackView AutoLayout
height = 80
참고사진