forked from Team-Sopetit/iOS-Practice
-
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
112 additions
and
6 deletions.
There are no files selected for viewing
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
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
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,70 @@ | ||
// | ||
// TopViewView.swift | ||
// iOS-Practice | ||
// | ||
// Created by Woo Jye Lee on 1/6/24. | ||
// | ||
|
||
import UIKit | ||
|
||
import SnapKit | ||
|
||
final class TopViewView: UIView { | ||
|
||
// MARK: - Properties | ||
|
||
|
||
// MARK: - UI Components | ||
|
||
|
||
// MARK: - Life Cycles | ||
|
||
override init(frame: CGRect) { | ||
super.init(frame: frame) | ||
|
||
setUI() | ||
setHierarchy() | ||
setLayout() | ||
setAddTarget() | ||
setRegisterCell() | ||
} | ||
|
||
@available(*, unavailable) | ||
required init?(coder: NSCoder) { | ||
fatalError("init(coder:) has not been implemented") | ||
} | ||
} | ||
|
||
// MARK: - Extensions | ||
|
||
extension TopViewView { | ||
|
||
func setUI() { | ||
|
||
} | ||
|
||
func setHierarchy() { | ||
|
||
} | ||
|
||
func setLayout() { | ||
|
||
} | ||
|
||
func setAddTarget() { | ||
|
||
} | ||
|
||
@objc | ||
func buttonTapped() { | ||
|
||
} | ||
|
||
func setRegisterCell() { | ||
|
||
} | ||
|
||
func setDataBind() { | ||
|
||
} | ||
} |