-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
Noostak_iOS/Noostak_iOS/Presentation/SignUp/Reactor/SignUpReactor.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
46
Noostak_iOS/Noostak_iOS/Presentation/SignUp/View/SignUpView.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { | ||
|
||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
Noostak_iOS/Noostak_iOS/Presentation/SignUp/ViewController/SignUpViewController.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { | ||
|
||
} | ||
} | ||
|