Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5주차] 이세민 실습 #56

Open
wants to merge 11 commits into
base: week1-Semin
Choose a base branch
from
16 changes: 16 additions & 0 deletions LeeSeminSU/LeeSeminSU.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
766C3A772D04C34600E2B952 /* Charge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 766C3A762D04C34600E2B952 /* Charge.swift */; };
769FAB262CE1157A00785E3D /* SpacerPaddingExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 769FAB252CE1157A00785E3D /* SpacerPaddingExample.swift */; };
769FAB292CE115B700785E3D /* ModifierExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 769FAB282CE115B700785E3D /* ModifierExample.swift */; };
76BD46112CE103AB00E215FE /* VStackHStackExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76BD46102CE103AB00E215FE /* VStackHStackExample.swift */; };
Expand All @@ -26,9 +27,11 @@
76FC2B872D00C4A100F10EE1 /* SecondNavigationViewExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76FC2B862D00C4A100F10EE1 /* SecondNavigationViewExample.swift */; };
76FC2B8A2D00CA4200F10EE1 /* TabViewExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76FC2B892D00CA4200F10EE1 /* TabViewExample.swift */; };
76FC2B8D2D00CC6600F10EE1 /* SheetModifierExample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76FC2B8C2D00CC6600F10EE1 /* SheetModifierExample.swift */; };
76FC2B902D00D40D00F10EE1 /* Main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76FC2B8F2D00D40D00F10EE1 /* Main.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
766C3A762D04C34600E2B952 /* Charge.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Charge.swift; sourceTree = "<group>"; };
769FAB252CE1157A00785E3D /* SpacerPaddingExample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpacerPaddingExample.swift; sourceTree = "<group>"; };
769FAB282CE115B700785E3D /* ModifierExample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ModifierExample.swift; sourceTree = "<group>"; };
76BD46102CE103AB00E215FE /* VStackHStackExample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VStackHStackExample.swift; sourceTree = "<group>"; };
Expand All @@ -49,6 +52,7 @@
76FC2B862D00C4A100F10EE1 /* SecondNavigationViewExample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecondNavigationViewExample.swift; sourceTree = "<group>"; };
76FC2B892D00CA4200F10EE1 /* TabViewExample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TabViewExample.swift; sourceTree = "<group>"; };
76FC2B8C2D00CC6600F10EE1 /* SheetModifierExample.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SheetModifierExample.swift; sourceTree = "<group>"; };
76FC2B8F2D00D40D00F10EE1 /* Main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Main.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -105,6 +109,7 @@
76DFF92E2CD7B4F100C373C3 /* LeeSeminSU */ = {
isa = PBXGroup;
children = (
76FC2B8E2D00D3D400F10EE1 /* Week5 - TravelWallet */,
76FC2B742D00B37D00F10EE1 /* Week4 */,
76FC2B6F2D00AB7E00F10EE1 /* Week3 */,
76FC2DD82CE06C37000B329B /* Week2 */,
Expand Down Expand Up @@ -180,6 +185,15 @@
path = SheetModifier;
sourceTree = "<group>";
};
76FC2B8E2D00D3D400F10EE1 /* Week5 - TravelWallet */ = {
isa = PBXGroup;
children = (
76FC2B8F2D00D40D00F10EE1 /* Main.swift */,
766C3A762D04C34600E2B952 /* Charge.swift */,
);
path = "Week5 - TravelWallet";
sourceTree = "<group>";
};
76FC2DD82CE06C37000B329B /* Week2 */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -270,11 +284,13 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
76FC2B902D00D40D00F10EE1 /* Main.swift in Sources */,
76FC2B852D00C49900F10EE1 /* FirstNavigationViewExample.swift in Sources */,
76FC2B762D00B3C000F10EE1 /* StateExample.swift in Sources */,
76FC2B732D00AC0000F10EE1 /* ScrollViewExample.swift in Sources */,
76DFF9322CD7B4F100C373C3 /* ContentView.swift in Sources */,
76FC2B7B2D00BA2800F10EE1 /* ObservedObjectExample.swift in Sources */,
766C3A772D04C34600E2B952 /* Charge.swift in Sources */,
76FC2B792D00B7E300F10EE1 /* BindingExample.swift in Sources */,
76DFF9302CD7B4F100C373C3 /* LeeSeminSUApp.swift in Sources */,
769FAB262CE1157A00785E3D /* SpacerPaddingExample.swift in Sources */,
Expand Down
6 changes: 6 additions & 0 deletions LeeSeminSU/LeeSeminSU/Assets.xcassets/Week2/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "N.svg",
"idiom" : "universal"
}
],
"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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "exchange.svg",
"idiom" : "universal"
}
],
"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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "remit.svg",
"idiom" : "universal"
}
],
"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.
6 changes: 6 additions & 0 deletions LeeSeminSU/LeeSeminSU/Assets.xcassets/Week5/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "KOREA.svg",
"idiom" : "universal"
}
],
"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.
6 changes: 6 additions & 0 deletions LeeSeminSU/LeeSeminSU/Assets.xcassets/Week5/Nav/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "notification.svg",
"idiom" : "universal"
}
],
"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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "qr.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading