Skip to content

Commit

Permalink
[Feat/#38] SignUp init
Browse files Browse the repository at this point in the history
  • Loading branch information
FpRaArNkK committed Feb 20, 2025
1 parent f63f253 commit 2723910
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// SignUpReactor.swift
// Noostak_iOS
//
// Created by 박민서 on 2/20/25.
//

import Foundation
46 changes: 46 additions & 0 deletions Noostak_iOS/Noostak_iOS/Presentation/SignUp/View/SignUpView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
//
// SignUpView.swift
// Noostak_iOS
//
// Created by 박민서 on 2/20/25.
//

import UIKit

final class SomeView: UIView {

// MARK: Properties
// MARK: Views
// MARK: Init
override init(frame: CGRect) {
super.init(frame: frame)
setUpFoundation()
setUpHierarchy()
setUpUI()
setUpLayout()
}

required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}

// MARK: setUpFoundation
private func setUpFoundation() {

}

// MARK: setUpHierarchy
private func setUpHierarchy() {

}

// MARK: setUpUI
private func setUpUI() {

}

// MARK: setUpLayout
private func setUpLayout() {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
//
// SignUpViewController.swift
// Noostak_iOS
//
// Created by 박민서 on 2/20/25.
//

import UIKit

final class SignUpViewController: UIViewController {

// MARK: Properties
// MARK: Views
// MARK: Life Cycle - viewDidLoad
override func viewDidLoad() {
super.viewDidLoad()
setUpFoundation()
setUpHierarchy()
setUpUI()
setUpLayout()
}

// MARK: setUpFoundation
private func setUpFoundation() {

}

// MARK: setUpHierarchy
private func setUpHierarchy() {

}

// MARK: setUpUI
private func setUpUI() {

}

// MARK: setUpLayout
private func setUpLayout() {

}
}

0 comments on commit 2723910

Please sign in to comment.