diff --git a/Coinone-iOS/Coinone-iOS.xcodeproj/project.pbxproj b/Coinone-iOS/Coinone-iOS.xcodeproj/project.pbxproj index 9181bd5..3cd8cfe 100644 --- a/Coinone-iOS/Coinone-iOS.xcodeproj/project.pbxproj +++ b/Coinone-iOS/Coinone-iOS.xcodeproj/project.pbxproj @@ -33,6 +33,7 @@ CCAA9A2B264FACDD008E50BF /* UIColor+.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAA9A2A264FACDD008E50BF /* UIColor+.swift */; }; CCAA9A2E264FAEB9008E50BF /* CALayer+.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAA9A2D264FAEB9008E50BF /* CALayer+.swift */; }; CCAA9A34264FAF68008E50BF /* UIView+.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCAA9A33264FAF68008E50BF /* UIView+.swift */; }; + E8F7A8DD264FB4260032A8BC /* MyViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F7A8DC264FB4260032A8BC /* MyViewController.swift */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -64,6 +65,7 @@ CCAA9A2D264FAEB9008E50BF /* CALayer+.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CALayer+.swift"; sourceTree = ""; }; CCAA9A33264FAF68008E50BF /* UIView+.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+.swift"; sourceTree = ""; }; E0AB500236EDF60103A408AE /* Pods_Coinone_iOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Coinone_iOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E8F7A8DC264FB4260032A8BC /* MyViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyViewController.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -199,6 +201,22 @@ path = Extensions; sourceTree = ""; }; + E8F7A8DA264FB4090032A8BC /* Source */ = { + isa = PBXGroup; + children = ( + E8F7A8DB264FB4150032A8BC /* ViewControllers */, + ); + path = Source; + sourceTree = ""; + }; + E8F7A8DB264FB4150032A8BC /* ViewControllers */ = { + isa = PBXGroup; + children = ( + E8F7A8DC264FB4260032A8BC /* MyViewController.swift */, + ); + path = ViewControllers; + sourceTree = ""; + }; ED714A03D33751BE4D1F86CA /* Frameworks */ = { isa = PBXGroup; children = ( @@ -353,6 +371,7 @@ 922E2322264FB40300F8ADA7 /* GeoraesoVC.swift in Sources */, CC272E5B26517E6000637BCE /* TabbarViewController.swift in Sources */, CCA0ECC6264FA7A4001CC563 /* AppDelegate.swift in Sources */, + E8F7A8DD264FB4260032A8BC /* MyViewController.swift in Sources */, 92C9EE8F2650314C00E73641 /* StockTVC.swift in Sources */, CCAA9A2E264FAEB9008E50BF /* CALayer+.swift in Sources */, CC272E6226517F0500637BCE /* HomeViewController.swift in Sources */, diff --git a/Coinone-iOS/Coinone-iOS/Resource/Info.plist b/Coinone-iOS/Coinone-iOS/Resource/Info.plist index 41b75c1..0156b5b 100644 --- a/Coinone-iOS/Coinone-iOS/Resource/Info.plist +++ b/Coinone-iOS/Coinone-iOS/Resource/Info.plist @@ -53,7 +53,7 @@ UILaunchStoryboardName LaunchScreen UIMainStoryboardFile - Main + My UIRequiredDeviceCapabilities armv7 diff --git a/Coinone-iOS/Coinone-iOS/Resource/Storyboards/My.storyboard b/Coinone-iOS/Coinone-iOS/Resource/Storyboards/My.storyboard index f9a048e..3492bed 100644 --- a/Coinone-iOS/Coinone-iOS/Resource/Storyboards/My.storyboard +++ b/Coinone-iOS/Coinone-iOS/Resource/Storyboards/My.storyboard @@ -1,7 +1,32 @@ - - + + + - + + + + - + + + + + + + + + + + + + + + + + + + + + + diff --git a/Coinone-iOS/Coinone-iOS/Source/ViewControllers/MyViewController.swift b/Coinone-iOS/Coinone-iOS/Source/ViewControllers/MyViewController.swift new file mode 100644 index 0000000..caa046d --- /dev/null +++ b/Coinone-iOS/Coinone-iOS/Source/ViewControllers/MyViewController.swift @@ -0,0 +1,29 @@ +// +// MyViewController.swift +// Coinone-iOS +// +// Created by 김지수 on 2021/05/15. +// + +import UIKit + +class MyViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + + // Do any additional setup after loading the view. + } + + + /* + // MARK: - Navigation + + // In a storyboard-based application, you will often want to do a little preparation before navigation + override func prepare(for segue: UIStoryboardSegue, sender: Any?) { + // Get the new view controller using segue.destination. + // Pass the selected object to the new view controller. + } + */ + +}