Skip to content

Commit

Permalink
Merge pull request #2 from Bibi-urssu/#1-1
Browse files Browse the repository at this point in the history
SignUp UI 구현
  • Loading branch information
iiuoon authored Nov 21, 2022
2 parents 53a937f + 4c01c27 commit 66a21dc
Show file tree
Hide file tree
Showing 8 changed files with 356 additions and 5 deletions.
8 changes: 8 additions & 0 deletions SignUp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
950255BA292B472700C98800 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 950255B8292B472700C98800 /* Main.storyboard */; };
950255BC292B472B00C98800 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 950255BB292B472B00C98800 /* Assets.xcassets */; };
950255BF292B472B00C98800 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 950255BD292B472B00C98800 /* LaunchScreen.storyboard */; };
950255C7292B56D900C98800 /* SignUpBasicViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950255C6292B56D900C98800 /* SignUpBasicViewController.swift */; };
950255C9292B56EC00C98800 /* SignUpDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 950255C8292B56EC00C98800 /* SignUpDetailViewController.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -24,6 +26,8 @@
950255BB292B472B00C98800 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
950255BE292B472B00C98800 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
950255C0292B472B00C98800 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
950255C6292B56D900C98800 /* SignUpBasicViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignUpBasicViewController.swift; sourceTree = "<group>"; };
950255C8292B56EC00C98800 /* SignUpDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignUpDetailViewController.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -59,6 +63,8 @@
950255B2292B472700C98800 /* AppDelegate.swift */,
950255B4292B472700C98800 /* SceneDelegate.swift */,
950255B6292B472700C98800 /* ViewController.swift */,
950255C6292B56D900C98800 /* SignUpBasicViewController.swift */,
950255C8292B56EC00C98800 /* SignUpDetailViewController.swift */,
950255B8292B472700C98800 /* Main.storyboard */,
950255BB292B472B00C98800 /* Assets.xcassets */,
950255BD292B472B00C98800 /* LaunchScreen.storyboard */,
Expand Down Expand Up @@ -139,7 +145,9 @@
buildActionMask = 2147483647;
files = (
950255B7292B472700C98800 /* ViewController.swift in Sources */,
950255C7292B56D900C98800 /* SignUpBasicViewController.swift in Sources */,
950255B3292B472700C98800 /* AppDelegate.swift in Sources */,
950255C9292B56EC00C98800 /* SignUpDetailViewController.swift in Sources */,
950255B5292B472700C98800 /* SceneDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
23 changes: 23 additions & 0 deletions SignUp/Assets.xcassets/Naver_Logo.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "Naver_Logo.jpeg",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "Naver_Logo 1.jpeg",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "Naver_Logo 2.jpeg",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
272 changes: 267 additions & 5 deletions SignUp/Base.lproj/Main.storyboard

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions SignUp/SignUpBasicViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
//
// SignUpBasicViewController.swift
// SignUp
//
// Created by 박지윤 on 2022/11/21.
//

import UIKit

class SignUpBasicViewController: 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.
}
*/

}
29 changes: 29 additions & 0 deletions SignUp/SignUpDetailViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
//
// SignUpDetailViewController.swift
// SignUp
//
// Created by 박지윤 on 2022/11/21.
//

import UIKit

class SignUpDetailViewController: 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.
}
*/

}

0 comments on commit 66a21dc

Please sign in to comment.