Skip to content

Commit

Permalink
Merge pull request #9 from Jinsujin/feature-1
Browse files Browse the repository at this point in the history
[Rosa] Feature #1 - RootView 스토리보드 작업
  • Loading branch information
SangHwi-Back authored Apr 6, 2022
2 parents cda53d3 + adab23c commit 3a9d345
Show file tree
Hide file tree
Showing 13 changed files with 426 additions and 15 deletions.
36 changes: 36 additions & 0 deletions Client/iOS/TodoList.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
objects = {

/* Begin PBXBuildFile section */
6F13F36D27FC2487000DF2BA /* TodoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F13F36B27FC2487000DF2BA /* TodoViewController.swift */; };
6F13F37427FC9BD3000DF2BA /* ProgressTodoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F13F37327FC9BD3000DF2BA /* ProgressTodoViewController.swift */; };
6F13F37627FC9C0A000DF2BA /* CompletedTodoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F13F37527FC9C0A000DF2BA /* CompletedTodoViewController.swift */; };
6F1EC59927FD5B4500BAED63 /* TodoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F1EC59727FD5B4500BAED63 /* TodoTableViewCell.swift */; };
6F1EC59A27FD5B4500BAED63 /* TodoTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6F1EC59827FD5B4500BAED63 /* TodoTableViewCell.xib */; };
6F5BC28927FA9CB0002D591D /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F5BC28827FA9CB0002D591D /* AppDelegate.swift */; };
6F5BC28B27FA9CB0002D591D /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F5BC28A27FA9CB0002D591D /* SceneDelegate.swift */; };
6F5BC28D27FA9CB0002D591D /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F5BC28C27FA9CB0002D591D /* ViewController.swift */; };
Expand Down Expand Up @@ -35,6 +40,11 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
6F13F36B27FC2487000DF2BA /* TodoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TodoViewController.swift; sourceTree = "<group>"; };
6F13F37327FC9BD3000DF2BA /* ProgressTodoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProgressTodoViewController.swift; sourceTree = "<group>"; };
6F13F37527FC9C0A000DF2BA /* CompletedTodoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CompletedTodoViewController.swift; sourceTree = "<group>"; };
6F1EC59727FD5B4500BAED63 /* TodoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TodoTableViewCell.swift; sourceTree = "<group>"; };
6F1EC59827FD5B4500BAED63 /* TodoTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TodoTableViewCell.xib; sourceTree = "<group>"; };
6F5BC28527FA9CB0002D591D /* TodoList.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TodoList.app; sourceTree = BUILT_PRODUCTS_DIR; };
6F5BC28827FA9CB0002D591D /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
6F5BC28A27FA9CB0002D591D /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -76,6 +86,25 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
6F13F36F27FC2D31000DF2BA /* ViewControllers */ = {
isa = PBXGroup;
children = (
6F13F36B27FC2487000DF2BA /* TodoViewController.swift */,
6F13F37327FC9BD3000DF2BA /* ProgressTodoViewController.swift */,
6F13F37527FC9C0A000DF2BA /* CompletedTodoViewController.swift */,
);
path = ViewControllers;
sourceTree = "<group>";
};
6F1EC59627FD5B0800BAED63 /* Cells */ = {
isa = PBXGroup;
children = (
6F1EC59727FD5B4500BAED63 /* TodoTableViewCell.swift */,
6F1EC59827FD5B4500BAED63 /* TodoTableViewCell.xib */,
);
path = Cells;
sourceTree = "<group>";
};
6F5BC27C27FA9CB0002D591D = {
isa = PBXGroup;
children = (
Expand All @@ -99,6 +128,8 @@
6F5BC28727FA9CB0002D591D /* TodoList */ = {
isa = PBXGroup;
children = (
6F1EC59627FD5B0800BAED63 /* Cells */,
6F13F36F27FC2D31000DF2BA /* ViewControllers */,
6F5BC28827FA9CB0002D591D /* AppDelegate.swift */,
6F5BC28A27FA9CB0002D591D /* SceneDelegate.swift */,
6F5BC28C27FA9CB0002D591D /* ViewController.swift */,
Expand Down Expand Up @@ -234,6 +265,7 @@
6F5BC29527FA9CB6002D591D /* LaunchScreen.storyboard in Resources */,
6F5BC29227FA9CB6002D591D /* Assets.xcassets in Resources */,
6F5BC29027FA9CB0002D591D /* Main.storyboard in Resources */,
6F1EC59A27FD5B4500BAED63 /* TodoTableViewCell.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -258,9 +290,13 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6F1EC59927FD5B4500BAED63 /* TodoTableViewCell.swift in Sources */,
6F13F36D27FC2487000DF2BA /* TodoViewController.swift in Sources */,
6F5BC28D27FA9CB0002D591D /* ViewController.swift in Sources */,
6F5BC28927FA9CB0002D591D /* AppDelegate.swift in Sources */,
6F5BC28B27FA9CB0002D591D /* SceneDelegate.swift in Sources */,
6F13F37627FC9C0A000DF2BA /* CompletedTodoViewController.swift in Sources */,
6F13F37427FC9BD3000DF2BA /* ProgressTodoViewController.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"images" : [
{
"filename" : "icon_menu@1x.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "icon_menu@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "icon_menu@3x.png",
"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.
Loading

0 comments on commit 3a9d345

Please sign in to comment.