Skip to content

Commit dc1ee8b

Browse files
committed
fix: #365 충돌 해결
1 parent 0d04795 commit dc1ee8b

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

ByeBoo-iOS/ByeBoo-iOS/Presentation/Feature/Quest/View/Archive/ArchiveQuestView.swift

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ final class ArchiveQuestView: BaseView {
2121
date: "",
2222
questTitle:""
2323
)
24+
private let textBoxView = TextBoxView(title: "")
25+
private let photoBoxView: UIImageView?
26+
private let feelView = FeelView(emotionType: "", descriptionText: "")
2427
private let AIAnswerButton = ByeBooButton(
2528
titleText: "보리의 답장 보러가기",
2629
type: .enabled
2730
)
2831

29-
private let textBoxView = TextBoxView(title: "")
30-
private let photoBoxView: UIImageView?
31-
private let feelView = FeelView(emotionType: "", descriptionText: "")
3232
private var descriptionText: String = ""
3333
private var photoURL: String = ""
3434

@@ -117,15 +117,16 @@ final class ArchiveQuestView: BaseView {
117117
$0.horizontalEdges.equalToSuperview().inset(24.adjustedW)
118118
}
119119

120+
feelView.snp.makeConstraints {
121+
$0.top.equalTo(textBoxView.snp.bottom).offset(20.adjustedH)
122+
$0.horizontalEdges.equalToSuperview()
123+
}
124+
120125
AIAnswerButton.snp.makeConstraints {
121126
$0.top.greaterThanOrEqualTo(feelView.snp.bottom).offset(44.adjustedH)
122127
$0.horizontalEdges.equalToSuperview().inset(24.adjustedW)
123128
$0.bottom.equalTo(contentView.snp.bottom).inset(36.adjustedH)
124129
}
125-
feelView.snp.makeConstraints {
126-
$0.top.equalTo(textBoxView.snp.bottom).offset(20.adjustedH)
127-
$0.horizontalEdges.equalToSuperview()
128-
}
129130
}
130131
}
131132

0 commit comments

Comments
 (0)