Skip to content

Commit 4aa12f2

Browse files
committed
Added AddItemTableViewDemo
1 parent 152d7f1 commit 4aa12f2

23 files changed

+963
-0
lines changed
Lines changed: 318 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,318 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
E2837547176BA6F000554DBF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2837546176BA6F000554DBF /* UIKit.framework */; };
11+
E2837549176BA6F000554DBF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2837548176BA6F000554DBF /* Foundation.framework */; };
12+
E283754B176BA6F000554DBF /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E283754A176BA6F000554DBF /* CoreGraphics.framework */; };
13+
E2837551176BA6F000554DBF /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E283754F176BA6F000554DBF /* InfoPlist.strings */; };
14+
E2837553176BA6F000554DBF /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E2837552176BA6F000554DBF /* main.m */; };
15+
E2837557176BA6F000554DBF /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E2837556176BA6F000554DBF /* AppDelegate.m */; };
16+
E2837559176BA6F000554DBF /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = E2837558176BA6F000554DBF /* Default.png */; };
17+
E283755B176BA6F000554DBF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = E283755A176BA6F000554DBF /* [email protected] */; };
18+
E283755D176BA6F000554DBF /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = E283755C176BA6F000554DBF /* [email protected] */; };
19+
E2837560176BA6F000554DBF /* MainStoryboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E283755E176BA6F000554DBF /* MainStoryboard.storyboard */; };
20+
E2969A23176C62FB0075FB3C /* CarListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2969A22176C62FB0075FB3C /* CarListViewController.m */; };
21+
E2969A26176C63220075FB3C /* Car.m in Sources */ = {isa = PBXBuildFile; fileRef = E2969A25176C63220075FB3C /* Car.m */; };
22+
E2969A2C176D1BEC0075FB3C /* CarDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2969A2B176D1BEC0075FB3C /* CarDetailViewController.m */; };
23+
/* End PBXBuildFile section */
24+
25+
/* Begin PBXFileReference section */
26+
E2837543176BA6F000554DBF /* AddItemTableViewDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AddItemTableViewDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
27+
E2837546176BA6F000554DBF /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
28+
E2837548176BA6F000554DBF /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
29+
E283754A176BA6F000554DBF /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
30+
E283754E176BA6F000554DBF /* AddItemTableViewDemo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "AddItemTableViewDemo-Info.plist"; sourceTree = "<group>"; };
31+
E2837550176BA6F000554DBF /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
32+
E2837552176BA6F000554DBF /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
33+
E2837554176BA6F000554DBF /* AddItemTableViewDemo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "AddItemTableViewDemo-Prefix.pch"; sourceTree = "<group>"; };
34+
E2837555176BA6F000554DBF /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
35+
E2837556176BA6F000554DBF /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
36+
E2837558176BA6F000554DBF /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
37+
E283755A176BA6F000554DBF /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
38+
E283755C176BA6F000554DBF /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
39+
E283755F176BA6F000554DBF /* en */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = en; path = en.lproj/MainStoryboard.storyboard; sourceTree = "<group>"; };
40+
E2969A21176C62FB0075FB3C /* CarListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CarListViewController.h; sourceTree = "<group>"; };
41+
E2969A22176C62FB0075FB3C /* CarListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CarListViewController.m; sourceTree = "<group>"; };
42+
E2969A24176C63220075FB3C /* Car.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Car.h; sourceTree = "<group>"; };
43+
E2969A25176C63220075FB3C /* Car.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Car.m; sourceTree = "<group>"; };
44+
E2969A2A176D1BEC0075FB3C /* CarDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CarDetailViewController.h; sourceTree = "<group>"; };
45+
E2969A2B176D1BEC0075FB3C /* CarDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CarDetailViewController.m; sourceTree = "<group>"; };
46+
/* End PBXFileReference section */
47+
48+
/* Begin PBXFrameworksBuildPhase section */
49+
E2837540176BA6F000554DBF /* Frameworks */ = {
50+
isa = PBXFrameworksBuildPhase;
51+
buildActionMask = 2147483647;
52+
files = (
53+
E2837547176BA6F000554DBF /* UIKit.framework in Frameworks */,
54+
E2837549176BA6F000554DBF /* Foundation.framework in Frameworks */,
55+
E283754B176BA6F000554DBF /* CoreGraphics.framework in Frameworks */,
56+
);
57+
runOnlyForDeploymentPostprocessing = 0;
58+
};
59+
/* End PBXFrameworksBuildPhase section */
60+
61+
/* Begin PBXGroup section */
62+
E283753A176BA6F000554DBF = {
63+
isa = PBXGroup;
64+
children = (
65+
E283754C176BA6F000554DBF /* AddItemTableViewDemo */,
66+
E2837545176BA6F000554DBF /* Frameworks */,
67+
E2837544176BA6F000554DBF /* Products */,
68+
);
69+
sourceTree = "<group>";
70+
};
71+
E2837544176BA6F000554DBF /* Products */ = {
72+
isa = PBXGroup;
73+
children = (
74+
E2837543176BA6F000554DBF /* AddItemTableViewDemo.app */,
75+
);
76+
name = Products;
77+
sourceTree = "<group>";
78+
};
79+
E2837545176BA6F000554DBF /* Frameworks */ = {
80+
isa = PBXGroup;
81+
children = (
82+
E2837546176BA6F000554DBF /* UIKit.framework */,
83+
E2837548176BA6F000554DBF /* Foundation.framework */,
84+
E283754A176BA6F000554DBF /* CoreGraphics.framework */,
85+
);
86+
name = Frameworks;
87+
sourceTree = "<group>";
88+
};
89+
E283754C176BA6F000554DBF /* AddItemTableViewDemo */ = {
90+
isa = PBXGroup;
91+
children = (
92+
E2837555176BA6F000554DBF /* AppDelegate.h */,
93+
E2837556176BA6F000554DBF /* AppDelegate.m */,
94+
E283755E176BA6F000554DBF /* MainStoryboard.storyboard */,
95+
E2969A21176C62FB0075FB3C /* CarListViewController.h */,
96+
E2969A22176C62FB0075FB3C /* CarListViewController.m */,
97+
E2969A2A176D1BEC0075FB3C /* CarDetailViewController.h */,
98+
E2969A2B176D1BEC0075FB3C /* CarDetailViewController.m */,
99+
E2969A24176C63220075FB3C /* Car.h */,
100+
E2969A25176C63220075FB3C /* Car.m */,
101+
E283754D176BA6F000554DBF /* Supporting Files */,
102+
);
103+
path = AddItemTableViewDemo;
104+
sourceTree = "<group>";
105+
};
106+
E283754D176BA6F000554DBF /* Supporting Files */ = {
107+
isa = PBXGroup;
108+
children = (
109+
E283754E176BA6F000554DBF /* AddItemTableViewDemo-Info.plist */,
110+
E283754F176BA6F000554DBF /* InfoPlist.strings */,
111+
E2837552176BA6F000554DBF /* main.m */,
112+
E2837554176BA6F000554DBF /* AddItemTableViewDemo-Prefix.pch */,
113+
E2837558176BA6F000554DBF /* Default.png */,
114+
E283755A176BA6F000554DBF /* [email protected] */,
115+
E283755C176BA6F000554DBF /* [email protected] */,
116+
);
117+
name = "Supporting Files";
118+
sourceTree = "<group>";
119+
};
120+
/* End PBXGroup section */
121+
122+
/* Begin PBXNativeTarget section */
123+
E2837542176BA6F000554DBF /* AddItemTableViewDemo */ = {
124+
isa = PBXNativeTarget;
125+
buildConfigurationList = E2837566176BA6F000554DBF /* Build configuration list for PBXNativeTarget "AddItemTableViewDemo" */;
126+
buildPhases = (
127+
E283753F176BA6F000554DBF /* Sources */,
128+
E2837540176BA6F000554DBF /* Frameworks */,
129+
E2837541176BA6F000554DBF /* Resources */,
130+
);
131+
buildRules = (
132+
);
133+
dependencies = (
134+
);
135+
name = AddItemTableViewDemo;
136+
productName = AddItemTableViewDemo;
137+
productReference = E2837543176BA6F000554DBF /* AddItemTableViewDemo.app */;
138+
productType = "com.apple.product-type.application";
139+
};
140+
/* End PBXNativeTarget section */
141+
142+
/* Begin PBXProject section */
143+
E283753B176BA6F000554DBF /* Project object */ = {
144+
isa = PBXProject;
145+
attributes = {
146+
LastUpgradeCheck = 0460;
147+
ORGANIZATIONNAME = "Arthur Knopper";
148+
};
149+
buildConfigurationList = E283753E176BA6F000554DBF /* Build configuration list for PBXProject "AddItemTableViewDemo" */;
150+
compatibilityVersion = "Xcode 3.2";
151+
developmentRegion = English;
152+
hasScannedForEncodings = 0;
153+
knownRegions = (
154+
en,
155+
);
156+
mainGroup = E283753A176BA6F000554DBF;
157+
productRefGroup = E2837544176BA6F000554DBF /* Products */;
158+
projectDirPath = "";
159+
projectRoot = "";
160+
targets = (
161+
E2837542176BA6F000554DBF /* AddItemTableViewDemo */,
162+
);
163+
};
164+
/* End PBXProject section */
165+
166+
/* Begin PBXResourcesBuildPhase section */
167+
E2837541176BA6F000554DBF /* Resources */ = {
168+
isa = PBXResourcesBuildPhase;
169+
buildActionMask = 2147483647;
170+
files = (
171+
E2837551176BA6F000554DBF /* InfoPlist.strings in Resources */,
172+
E2837559176BA6F000554DBF /* Default.png in Resources */,
173+
E283755B176BA6F000554DBF /* [email protected] in Resources */,
174+
E283755D176BA6F000554DBF /* [email protected] in Resources */,
175+
E2837560176BA6F000554DBF /* MainStoryboard.storyboard in Resources */,
176+
);
177+
runOnlyForDeploymentPostprocessing = 0;
178+
};
179+
/* End PBXResourcesBuildPhase section */
180+
181+
/* Begin PBXSourcesBuildPhase section */
182+
E283753F176BA6F000554DBF /* Sources */ = {
183+
isa = PBXSourcesBuildPhase;
184+
buildActionMask = 2147483647;
185+
files = (
186+
E2837553176BA6F000554DBF /* main.m in Sources */,
187+
E2837557176BA6F000554DBF /* AppDelegate.m in Sources */,
188+
E2969A23176C62FB0075FB3C /* CarListViewController.m in Sources */,
189+
E2969A26176C63220075FB3C /* Car.m in Sources */,
190+
E2969A2C176D1BEC0075FB3C /* CarDetailViewController.m in Sources */,
191+
);
192+
runOnlyForDeploymentPostprocessing = 0;
193+
};
194+
/* End PBXSourcesBuildPhase section */
195+
196+
/* Begin PBXVariantGroup section */
197+
E283754F176BA6F000554DBF /* InfoPlist.strings */ = {
198+
isa = PBXVariantGroup;
199+
children = (
200+
E2837550176BA6F000554DBF /* en */,
201+
);
202+
name = InfoPlist.strings;
203+
sourceTree = "<group>";
204+
};
205+
E283755E176BA6F000554DBF /* MainStoryboard.storyboard */ = {
206+
isa = PBXVariantGroup;
207+
children = (
208+
E283755F176BA6F000554DBF /* en */,
209+
);
210+
name = MainStoryboard.storyboard;
211+
sourceTree = "<group>";
212+
};
213+
/* End PBXVariantGroup section */
214+
215+
/* Begin XCBuildConfiguration section */
216+
E2837564176BA6F000554DBF /* Debug */ = {
217+
isa = XCBuildConfiguration;
218+
buildSettings = {
219+
ALWAYS_SEARCH_USER_PATHS = NO;
220+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
221+
CLANG_CXX_LIBRARY = "libc++";
222+
CLANG_ENABLE_OBJC_ARC = YES;
223+
CLANG_WARN_CONSTANT_CONVERSION = YES;
224+
CLANG_WARN_EMPTY_BODY = YES;
225+
CLANG_WARN_ENUM_CONVERSION = YES;
226+
CLANG_WARN_INT_CONVERSION = YES;
227+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
228+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
229+
COPY_PHASE_STRIP = NO;
230+
GCC_C_LANGUAGE_STANDARD = gnu99;
231+
GCC_DYNAMIC_NO_PIC = NO;
232+
GCC_OPTIMIZATION_LEVEL = 0;
233+
GCC_PREPROCESSOR_DEFINITIONS = (
234+
"DEBUG=1",
235+
"$(inherited)",
236+
);
237+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
238+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
239+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
240+
GCC_WARN_UNUSED_VARIABLE = YES;
241+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
242+
ONLY_ACTIVE_ARCH = YES;
243+
SDKROOT = iphoneos;
244+
};
245+
name = Debug;
246+
};
247+
E2837565176BA6F000554DBF /* Release */ = {
248+
isa = XCBuildConfiguration;
249+
buildSettings = {
250+
ALWAYS_SEARCH_USER_PATHS = NO;
251+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
252+
CLANG_CXX_LIBRARY = "libc++";
253+
CLANG_ENABLE_OBJC_ARC = YES;
254+
CLANG_WARN_CONSTANT_CONVERSION = YES;
255+
CLANG_WARN_EMPTY_BODY = YES;
256+
CLANG_WARN_ENUM_CONVERSION = YES;
257+
CLANG_WARN_INT_CONVERSION = YES;
258+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
259+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
260+
COPY_PHASE_STRIP = YES;
261+
GCC_C_LANGUAGE_STANDARD = gnu99;
262+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
263+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
264+
GCC_WARN_UNUSED_VARIABLE = YES;
265+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
266+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
267+
SDKROOT = iphoneos;
268+
VALIDATE_PRODUCT = YES;
269+
};
270+
name = Release;
271+
};
272+
E2837567176BA6F000554DBF /* Debug */ = {
273+
isa = XCBuildConfiguration;
274+
buildSettings = {
275+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
276+
GCC_PREFIX_HEADER = "AddItemTableViewDemo/AddItemTableViewDemo-Prefix.pch";
277+
INFOPLIST_FILE = "AddItemTableViewDemo/AddItemTableViewDemo-Info.plist";
278+
PRODUCT_NAME = "$(TARGET_NAME)";
279+
WRAPPER_EXTENSION = app;
280+
};
281+
name = Debug;
282+
};
283+
E2837568176BA6F000554DBF /* Release */ = {
284+
isa = XCBuildConfiguration;
285+
buildSettings = {
286+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
287+
GCC_PREFIX_HEADER = "AddItemTableViewDemo/AddItemTableViewDemo-Prefix.pch";
288+
INFOPLIST_FILE = "AddItemTableViewDemo/AddItemTableViewDemo-Info.plist";
289+
PRODUCT_NAME = "$(TARGET_NAME)";
290+
WRAPPER_EXTENSION = app;
291+
};
292+
name = Release;
293+
};
294+
/* End XCBuildConfiguration section */
295+
296+
/* Begin XCConfigurationList section */
297+
E283753E176BA6F000554DBF /* Build configuration list for PBXProject "AddItemTableViewDemo" */ = {
298+
isa = XCConfigurationList;
299+
buildConfigurations = (
300+
E2837564176BA6F000554DBF /* Debug */,
301+
E2837565176BA6F000554DBF /* Release */,
302+
);
303+
defaultConfigurationIsVisible = 0;
304+
defaultConfigurationName = Release;
305+
};
306+
E2837566176BA6F000554DBF /* Build configuration list for PBXNativeTarget "AddItemTableViewDemo" */ = {
307+
isa = XCConfigurationList;
308+
buildConfigurations = (
309+
E2837567176BA6F000554DBF /* Debug */,
310+
E2837568176BA6F000554DBF /* Release */,
311+
);
312+
defaultConfigurationIsVisible = 0;
313+
defaultConfigurationName = Release;
314+
};
315+
/* End XCConfigurationList section */
316+
};
317+
rootObject = E283753B176BA6F000554DBF /* Project object */;
318+
}

AddItemTableViewDemo/AddItemTableViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
type = "1"
4+
version = "1.0">
5+
</Bucket>

0 commit comments

Comments
 (0)