modalHandleView
클릭하면 기존 높이(129.0)에서 견적요약 창이 포함된 높이(전체 높이의 3/4)로 업데이트 해주어야 함
그래서
final class BottomModalView {
...
private func setupConstraints() {
heightAnchor.constraint(equalToConstant: Constants.bottomModalViewHeight).isActive = true
}
}
BottomModalView의 setupConstraints()에서 초기 heightAnchor를 잡고
private func showEstimateSummaryView() {
estimateSummaryView.isHidden = false
let screenHeight = window?.windowScene?.screen.bounds.height ?? 812
let viewHeight = screenHeight * 3 / 4
heightAnchor.constraint(equalToConstant: viewHeight).isActive = true
layoutIfNeeded()
}
모달 핸들 터치 시점에 heightAnchor 바꿔주려고 했는데
그러면
(
"<NSLayoutConstraint:0x600003422a30 iOS_H3_UI.BottomModalView:0x143a05a30.height == 129 (active)>",
"<NSLayoutConstraint:0x600003434230 iOS_H3_UI.BottomModalView:0x143a05a30.height == 639 (active)>"
)
이런 레이아웃 경고 뜨면서 동작하지 않음
→ 서로 다른 2개의 heightAnchor 제약조건이 활성화되어 제대로 동작하지 않은 것