Skip to content

Commit

Permalink
✏️[CORRECT] : #139 변수 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
comeheredart committed Sep 25, 2021
1 parent 1927f9e commit d1eeb4c
Showing 1 changed file with 12 additions and 17 deletions.
29 changes: 12 additions & 17 deletions ChaRo-iOS/ChaRo-iOS/Source/Views/VCs/SignScene/JoinVC.swift
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class JoinVC: UIViewController {
$0.layer.borderColor = UIColor.gray20.cgColor
}

var EmailView = UIView().then {
var emailView = UIView().then {
$0.backgroundColor = .white
}

Expand Down Expand Up @@ -152,14 +152,14 @@ class JoinVC: UIViewController {

private func configureEmailView() {

EmailView.snp.makeConstraints {
emailView.snp.makeConstraints {
$0.top.bottom.leading.trailing.equalToSuperview()
}

EmailView.addSubview(upperLabel)
EmailView.addSubview(upperSubLabel)
EmailView.addSubview(upperTextField)
EmailView.addSubview(nextButton)
emailView.addSubview(upperLabel)
emailView.addSubview(upperSubLabel)
emailView.addSubview(upperTextField)
emailView.addSubview(nextButton)


upperLabel.snp.makeConstraints {
Expand All @@ -185,25 +185,26 @@ class JoinVC: UIViewController {
$0.height.equalTo(48)
}

EmailView.dismissKeyboardWhenTappedAround()
emailView.dismissKeyboardWhenTappedAround()
}

private func configureVerifyEmailView() {

verifyEmailView.snp.makeConstraints {
$0.top.bottom.leading.trailing.equalToSuperview()
}
}


private func setStickyKeyboardButton() {

let stickyView = UIView(frame: CGRect(x: 0, y: 0, width: self.view.frame.width, height: 48))

let stickyNextButton = UIButton().then {
$0.backgroundColor = .mainBlue
$0.setTitle("다음", for: .normal)
$0.titleLabel?.font = .notoSansBoldFont(ofSize: 16)
}

stickyView.addSubview(stickyNextButton)

stickyNextButton.snp.makeConstraints {
$0.top.bottom.leading.trailing.equalToSuperview()
}
Expand All @@ -212,12 +213,6 @@ class JoinVC: UIViewController {

}

@objc func doneClicked() {

}




}

Expand All @@ -234,7 +229,7 @@ extension JoinVC: UICollectionViewDataSource {

guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: JoinViewCVC.identifier, for: indexPath) as? JoinViewCVC else { return UICollectionViewCell() }
cell.backgroundColor = .white
cell.addSubview(EmailView)
cell.addSubview(emailView)
configureEmailView()
return cell
}
Expand Down

0 comments on commit d1eeb4c

Please sign in to comment.