Skip to content

Commit

Permalink
feat: ContainerView 생성 및 embed (SangHwi-Back#1)
Browse files Browse the repository at this point in the history
- 메인화면에서 보여질 [해야할 일, 하고 있는 일, 완료한 일] 각각의 화면을 ViewController 로 생성
- 뷰컨트롤러들을 RootView 인 ViewController 에서 embed
  • Loading branch information
Jinsujin committed Apr 5, 2022
1 parent e950806 commit 922df9e
Show file tree
Hide file tree
Showing 7 changed files with 273 additions and 15 deletions.
20 changes: 20 additions & 0 deletions Client/iOS/TodoList.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
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 */; };
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 +38,9 @@
/* 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>"; };
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 +82,16 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
6F13F36F27FC2D31000DF2BA /* ViewControllers */ = {
isa = PBXGroup;
children = (
6F13F36B27FC2487000DF2BA /* TodoViewController.swift */,
6F13F37327FC9BD3000DF2BA /* ProgressTodoViewController.swift */,
6F13F37527FC9C0A000DF2BA /* CompletedTodoViewController.swift */,
);
path = ViewControllers;
sourceTree = "<group>";
};
6F5BC27C27FA9CB0002D591D = {
isa = PBXGroup;
children = (
Expand All @@ -99,6 +115,7 @@
6F5BC28727FA9CB0002D591D /* TodoList */ = {
isa = PBXGroup;
children = (
6F13F36F27FC2D31000DF2BA /* ViewControllers */,
6F5BC28827FA9CB0002D591D /* AppDelegate.swift */,
6F5BC28A27FA9CB0002D591D /* SceneDelegate.swift */,
6F5BC28C27FA9CB0002D591D /* ViewController.swift */,
Expand Down Expand Up @@ -258,9 +275,12 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
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.
Loading

0 comments on commit 922df9e

Please sign in to comment.