📑 학습 내용updateConstraints() : 뷰의 제약조건 업데이트변경해야 하는 항목만 업데이트 가능함self.homeView.underlineView.snp.updateConstraints { make in make.leading.equalToSuperview().offset(currentX) make.width.equalTo(lineWidth)}아래의 기존 constraints 에서 top, height은 그대로 두고 leading, width 값만 변경기존 constraints underlineView.snp.makeConstraints { make in make.top.equalTo(segmentedControl.snp.bottom).offset(-1) ..