From f1ca62e3237aceda58b60f29b3cceb7d6ec33d37 Mon Sep 17 00:00:00 2001 From: Eddie Ehlin Date: Sat, 12 Jan 2013 20:44:24 +0100 Subject: Added ExtractionViewController and also closed the Add-new-bean-collection-loop. --- iBean/iBean.xcodeproj/project.pbxproj | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) (limited to 'iBean/iBean.xcodeproj/project.pbxproj') diff --git a/iBean/iBean.xcodeproj/project.pbxproj b/iBean/iBean.xcodeproj/project.pbxproj index e3df510..68cbbd0 100644 --- a/iBean/iBean.xcodeproj/project.pbxproj +++ b/iBean/iBean.xcodeproj/project.pbxproj @@ -31,6 +31,7 @@ 020C5680169F5E9A00D8224C /* Bean+Interface.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C567F169F5E9900D8224C /* Bean+Interface.m */; }; 020C5683169F5FBB00D8224C /* BeanCollection+Interface.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C5682169F5FBB00D8224C /* BeanCollection+Interface.m */; }; 020C568F16A1CE0E00D8224C /* EditBeanViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C568E16A1CE0E00D8224C /* EditBeanViewController.m */; }; + 020C569316A1E55600D8224C /* ExtractionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C569216A1E55600D8224C /* ExtractionViewController.m */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -74,6 +75,8 @@ 020C5682169F5FBB00D8224C /* BeanCollection+Interface.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "BeanCollection+Interface.m"; sourceTree = ""; }; 020C568D16A1CE0E00D8224C /* EditBeanViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EditBeanViewController.h; sourceTree = ""; }; 020C568E16A1CE0E00D8224C /* EditBeanViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EditBeanViewController.m; sourceTree = ""; }; + 020C569116A1E55600D8224C /* ExtractionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtractionViewController.h; sourceTree = ""; }; + 020C569216A1E55600D8224C /* ExtractionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExtractionViewController.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -172,9 +175,10 @@ isa = PBXGroup; children = ( 020C56081698F58900D8224C /* BeanCollectionList */, - 020C56091698F59F00D8224C /* BeanCollectionInfo */, - 020C56071698F4DC00D8224C /* BeanCollectionBeanList */, - 020C566E169E1ACB00D8224C /* Bean */, + 020C56091698F59F00D8224C /* Step 1 - BeanCollectionInfo */, + 020C56071698F4DC00D8224C /* Step 2 - BeanCollectionBeanList */, + 020C566E169E1ACB00D8224C /* Step 3 - Bean */, + 020C569016A1E50200D8224C /* Step 4 - Extraction */, 020C55DF169792F800D8224C /* Data */, ); name = iBean; @@ -192,13 +196,13 @@ name = Data; sourceTree = ""; }; - 020C56071698F4DC00D8224C /* BeanCollectionBeanList */ = { + 020C56071698F4DC00D8224C /* Step 2 - BeanCollectionBeanList */ = { isa = PBXGroup; children = ( 020C56041698A85000D8224C /* BeanCollectionBeanListViewController.h */, 020C56051698A85000D8224C /* BeanCollectionBeanListViewController.m */, ); - name = BeanCollectionBeanList; + name = "Step 2 - BeanCollectionBeanList"; sourceTree = ""; }; 020C56081698F58900D8224C /* BeanCollectionList */ = { @@ -210,16 +214,16 @@ name = BeanCollectionList; sourceTree = ""; }; - 020C56091698F59F00D8224C /* BeanCollectionInfo */ = { + 020C56091698F59F00D8224C /* Step 1 - BeanCollectionInfo */ = { isa = PBXGroup; children = ( 020C560116989D4500D8224C /* BeanCollectionInfoViewController.h */, 020C560216989D4500D8224C /* BeanCollectionInfoViewController.m */, ); - name = BeanCollectionInfo; + name = "Step 1 - BeanCollectionInfo"; sourceTree = ""; }; - 020C566E169E1ACB00D8224C /* Bean */ = { + 020C566E169E1ACB00D8224C /* Step 3 - Bean */ = { isa = PBXGroup; children = ( 020C5670169E1B0100D8224C /* AddBeanViewController.h */, @@ -227,7 +231,7 @@ 020C568D16A1CE0E00D8224C /* EditBeanViewController.h */, 020C568E16A1CE0E00D8224C /* EditBeanViewController.m */, ); - name = Bean; + name = "Step 3 - Bean"; sourceTree = ""; }; 020C5684169F603700D8224C /* Interface */ = { @@ -241,6 +245,15 @@ name = Interface; sourceTree = ""; }; + 020C569016A1E50200D8224C /* Step 4 - Extraction */ = { + isa = PBXGroup; + children = ( + 020C569116A1E55600D8224C /* ExtractionViewController.h */, + 020C569216A1E55600D8224C /* ExtractionViewController.m */, + ); + name = "Step 4 - Extraction"; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -322,6 +335,7 @@ 020C5680169F5E9A00D8224C /* Bean+Interface.m in Sources */, 020C5683169F5FBB00D8224C /* BeanCollection+Interface.m in Sources */, 020C568F16A1CE0E00D8224C /* EditBeanViewController.m in Sources */, + 020C569316A1E55600D8224C /* ExtractionViewController.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; -- cgit v1.2.3