Skip to content

Commit

Permalink
refactor: 빈줄 추가 및 주석 삭제 (#338)
Browse files Browse the repository at this point in the history
- 충분히 함수명으로 역할을 알 수 있기 때문에 불필요한 주석이라고 판단했습니다.
  • Loading branch information
hyun99999 committed Jan 3, 2023
1 parent c9c4704 commit ea5a003
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,14 @@ class CardShareBottomSheetViewController: CommonBottomSheetViewController {
}()

// MARK: - View Life Cycle

override func viewDidLoad() {
super.viewDidLoad()
setupUI()
}

// MARK: - @Functions
// UI 세팅 작업

private func setupUI() {
idStackView.addArrangedSubview(idTitleLabel)
idStackView.addArrangedSubview(idLabel)
Expand All @@ -85,7 +86,6 @@ class CardShareBottomSheetViewController: CommonBottomSheetViewController {
setQRImage()
}

// 레이아웃 세팅
private func setupLayout() {
qrImage.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activate([
Expand Down Expand Up @@ -168,6 +168,7 @@ class CardShareBottomSheetViewController: CommonBottomSheetViewController {

return frontImage
}

private func setBackCardImage() -> UIImage {
guard let backCard = BackCardCell.nib().instantiate(withOwner: self, options: nil).first as? BackCardCell else { return UIImage() }
backCard.frame = CGRect(x: 0, y: 0, width: 327, height: 540)
Expand Down

0 comments on commit ea5a003

Please sign in to comment.