diff options
author | Eddie Ehlin <eddiex@eddiex.se> | 2013-01-19 00:07:02 +0100 |
---|---|---|
committer | Eddie Ehlin <eddiex@eddiex.se> | 2013-01-19 00:07:02 +0100 |
commit | 8ed55c1c7891d76ae15c155c0469253ca8fb3f34 (patch) | |
tree | b7a74a2545ffca4ed423ef38e886df9013dddbab /iBean/iBean.xcodeproj/project.pbxproj | |
parent | ac1de8f5356878226e38a45085a351dd9b7a8cef (diff) | |
download | iBean-8ed55c1c7891d76ae15c155c0469253ca8fb3f34.tar.gz iBean-8ed55c1c7891d76ae15c155c0469253ca8fb3f34.zip |
Added custom UITableViewCell for displaying bean information + extraction view controller (stub).
Diffstat (limited to 'iBean/iBean.xcodeproj/project.pbxproj')
-rw-r--r-- | iBean/iBean.xcodeproj/project.pbxproj | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/iBean/iBean.xcodeproj/project.pbxproj b/iBean/iBean.xcodeproj/project.pbxproj index 5775776..f809461 100644 --- a/iBean/iBean.xcodeproj/project.pbxproj +++ b/iBean/iBean.xcodeproj/project.pbxproj @@ -33,6 +33,8 @@ 020C569916A49C5900D8224C /* Configuration.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C569816A49C5900D8224C /* Configuration.m */; }; 020C569C16A49C8300D8224C /* Configuration+Interface.m in Sources */ = {isa = PBXBuildFile; fileRef = 020C569B16A49C8300D8224C /* Configuration+Interface.m */; }; 024F676D16A4A61D004A1201 /* InstantExtractionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 024F676C16A4A61D004A1201 /* InstantExtractionViewController.m */; }; + 02E557AE16A9C1E40080FBBA /* BeanCollectionExtractionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 02E557AD16A9C1E40080FBBA /* BeanCollectionExtractionViewController.m */; }; + 02E557B116A9CFB50080FBBA /* BeanCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 02E557B016A9CFB50080FBBA /* BeanCell.m */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -80,6 +82,10 @@ 020C569B16A49C8300D8224C /* Configuration+Interface.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Configuration+Interface.m"; sourceTree = "<group>"; }; 024F676B16A4A61D004A1201 /* InstantExtractionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InstantExtractionViewController.h; sourceTree = "<group>"; }; 024F676C16A4A61D004A1201 /* InstantExtractionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InstantExtractionViewController.m; sourceTree = "<group>"; }; + 02E557AC16A9C1E40080FBBA /* BeanCollectionExtractionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BeanCollectionExtractionViewController.h; sourceTree = "<group>"; }; + 02E557AD16A9C1E40080FBBA /* BeanCollectionExtractionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BeanCollectionExtractionViewController.m; sourceTree = "<group>"; }; + 02E557AF16A9CFB50080FBBA /* BeanCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BeanCell.h; sourceTree = "<group>"; }; + 02E557B016A9CFB50080FBBA /* BeanCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BeanCell.m; sourceTree = "<group>"; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -176,6 +182,7 @@ 020C55D31695C2C800D8224C /* iBean */ = { isa = PBXGroup; children = ( + 02E557AA16A9C1B90080FBBA /* BeanCollectionExtraction */, 020C56081698F58900D8224C /* BeanCollectionList */, 020C56091698F59F00D8224C /* Step 1 - BeanCollectionInfo */, 020C56071698F4DC00D8224C /* Step 2 - BeanCollectionBeanList */, @@ -259,6 +266,17 @@ name = "Step 4 - Extraction"; sourceTree = "<group>"; }; + 02E557AA16A9C1B90080FBBA /* BeanCollectionExtraction */ = { + isa = PBXGroup; + children = ( + 02E557AF16A9CFB50080FBBA /* BeanCell.h */, + 02E557B016A9CFB50080FBBA /* BeanCell.m */, + 02E557AC16A9C1E40080FBBA /* BeanCollectionExtractionViewController.h */, + 02E557AD16A9C1E40080FBBA /* BeanCollectionExtractionViewController.m */, + ); + name = BeanCollectionExtraction; + sourceTree = "<group>"; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -342,6 +360,8 @@ 020C569916A49C5900D8224C /* Configuration.m in Sources */, 020C569C16A49C8300D8224C /* Configuration+Interface.m in Sources */, 024F676D16A4A61D004A1201 /* InstantExtractionViewController.m in Sources */, + 02E557AE16A9C1E40080FBBA /* BeanCollectionExtractionViewController.m in Sources */, + 02E557B116A9CFB50080FBBA /* BeanCell.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; |