Skip to content

Commit

Permalink
[Feat] Team-Smeme#86 - step two placeHolder addSubview
Browse files Browse the repository at this point in the history
  • Loading branch information
cchanmi committed Jan 10, 2023
1 parent 0a832e7 commit b3cf17c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class StepTwoKoreanDiaryViewController: UIViewController {
private lazy var diaryTextView = UITextView().then {
$0.setLineSpacing()
$0.textColor = .gray400
$0.delegate = self
// $0.delegate = self
}

private let placeHolderLabel = UILabel().then {
Expand Down Expand Up @@ -168,6 +168,10 @@ final class StepTwoKoreanDiaryViewController: UIViewController {
$0.bottom.equalToSuperview()
}

placeHolderLabel.snp.makeConstraints {
$0.top.leading.equalToSuperview().inset(7)
}

bottomView.snp.makeConstraints {
$0.bottom.leading.trailing.equalToSuperview()
$0.height.equalTo(constraintByNotch(87, 53))
Expand Down

0 comments on commit b3cf17c

Please sign in to comment.