Skip to content

Commit b93c689

Browse files
committed
first commit
0 parents  commit b93c689

21 files changed

+912
-0
lines changed

.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# exclude the build directory
2+
build/*
3+
4+
# Exclude temp nibs and swap files
5+
*~.nib
6+
*.swp
7+
8+
# Exclude OS X folder attributes
9+
.DS_Store
10+
11+
# Exclude user-specific XCode 3 and 4 files
12+
*.mode1
13+
*.mode1v3
14+
*.mode2v3
15+
*.perspective
16+
*.perspectivev3
17+
*.pbxuser
18+
*.xcworkspace
19+
xcuserdata

Protocols.xcodeproj/project.pbxproj

+312
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,312 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
64C422171717A4C800B1FF64 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64C422161717A4C800B1FF64 /* UIKit.framework */; };
11+
64C422191717A4C800B1FF64 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64C422181717A4C800B1FF64 /* Foundation.framework */; };
12+
64C4221B1717A4C800B1FF64 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64C4221A1717A4C800B1FF64 /* CoreGraphics.framework */; };
13+
64C422211717A4C800B1FF64 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 64C4221F1717A4C800B1FF64 /* InfoPlist.strings */; };
14+
64C422231717A4C800B1FF64 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C422221717A4C800B1FF64 /* main.m */; };
15+
64C422271717A4C800B1FF64 /* PRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C422261717A4C800B1FF64 /* PRAppDelegate.m */; };
16+
64C422291717A4C800B1FF64 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 64C422281717A4C800B1FF64 /* Default.png */; };
17+
64C4222B1717A4C800B1FF64 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 64C4222A1717A4C800B1FF64 /* [email protected] */; };
18+
64C4222D1717A4C800B1FF64 /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = 64C4222C1717A4C800B1FF64 /* [email protected] */; };
19+
64C422301717A4C800B1FF64 /* PRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C4222F1717A4C800B1FF64 /* PRViewController.m */; };
20+
64C422331717A4C800B1FF64 /* PRViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 64C422311717A4C800B1FF64 /* PRViewController.xib */; };
21+
64C4223B1717ABFA00B1FF64 /* PRRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C4223A1717ABFA00B1FF64 /* PRRequest.m */; };
22+
/* End PBXBuildFile section */
23+
24+
/* Begin PBXFileReference section */
25+
64C422131717A4C800B1FF64 /* Protocols.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Protocols.app; sourceTree = BUILT_PRODUCTS_DIR; };
26+
64C422161717A4C800B1FF64 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
27+
64C422181717A4C800B1FF64 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
28+
64C4221A1717A4C800B1FF64 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
29+
64C4221E1717A4C800B1FF64 /* Protocols-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Protocols-Info.plist"; sourceTree = "<group>"; };
30+
64C422201717A4C800B1FF64 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
31+
64C422221717A4C800B1FF64 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
32+
64C422241717A4C800B1FF64 /* Protocols-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Protocols-Prefix.pch"; sourceTree = "<group>"; };
33+
64C422251717A4C800B1FF64 /* PRAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PRAppDelegate.h; sourceTree = "<group>"; };
34+
64C422261717A4C800B1FF64 /* PRAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PRAppDelegate.m; sourceTree = "<group>"; };
35+
64C422281717A4C800B1FF64 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
36+
64C4222A1717A4C800B1FF64 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
37+
64C4222C1717A4C800B1FF64 /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; };
38+
64C4222E1717A4C800B1FF64 /* PRViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PRViewController.h; sourceTree = "<group>"; };
39+
64C4222F1717A4C800B1FF64 /* PRViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PRViewController.m; sourceTree = "<group>"; };
40+
64C422321717A4C800B1FF64 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/PRViewController.xib; sourceTree = "<group>"; };
41+
64C422391717ABFA00B1FF64 /* PRRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PRRequest.h; path = Protocols/PRRequest.h; sourceTree = "<group>"; };
42+
64C4223A1717ABFA00B1FF64 /* PRRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PRRequest.m; path = Protocols/PRRequest.m; sourceTree = "<group>"; };
43+
/* End PBXFileReference section */
44+
45+
/* Begin PBXFrameworksBuildPhase section */
46+
64C422101717A4C800B1FF64 /* Frameworks */ = {
47+
isa = PBXFrameworksBuildPhase;
48+
buildActionMask = 2147483647;
49+
files = (
50+
64C422171717A4C800B1FF64 /* UIKit.framework in Frameworks */,
51+
64C422191717A4C800B1FF64 /* Foundation.framework in Frameworks */,
52+
64C4221B1717A4C800B1FF64 /* CoreGraphics.framework in Frameworks */,
53+
);
54+
runOnlyForDeploymentPostprocessing = 0;
55+
};
56+
/* End PBXFrameworksBuildPhase section */
57+
58+
/* Begin PBXGroup section */
59+
64C4220A1717A4C800B1FF64 = {
60+
isa = PBXGroup;
61+
children = (
62+
64C4221C1717A4C800B1FF64 /* Protocols */,
63+
64C422151717A4C800B1FF64 /* Frameworks */,
64+
64C422141717A4C800B1FF64 /* Products */,
65+
);
66+
sourceTree = "<group>";
67+
};
68+
64C422141717A4C800B1FF64 /* Products */ = {
69+
isa = PBXGroup;
70+
children = (
71+
64C422131717A4C800B1FF64 /* Protocols.app */,
72+
);
73+
name = Products;
74+
sourceTree = "<group>";
75+
};
76+
64C422151717A4C800B1FF64 /* Frameworks */ = {
77+
isa = PBXGroup;
78+
children = (
79+
64C422161717A4C800B1FF64 /* UIKit.framework */,
80+
64C422181717A4C800B1FF64 /* Foundation.framework */,
81+
64C4221A1717A4C800B1FF64 /* CoreGraphics.framework */,
82+
);
83+
name = Frameworks;
84+
sourceTree = "<group>";
85+
};
86+
64C4221C1717A4C800B1FF64 /* Protocols */ = {
87+
isa = PBXGroup;
88+
children = (
89+
64C422251717A4C800B1FF64 /* PRAppDelegate.h */,
90+
64C422261717A4C800B1FF64 /* PRAppDelegate.m */,
91+
64C4222E1717A4C800B1FF64 /* PRViewController.h */,
92+
64C4222F1717A4C800B1FF64 /* PRViewController.m */,
93+
64C422311717A4C800B1FF64 /* PRViewController.xib */,
94+
64C422391717ABFA00B1FF64 /* PRRequest.h */,
95+
64C4223A1717ABFA00B1FF64 /* PRRequest.m */,
96+
64C4221D1717A4C800B1FF64 /* Supporting Files */,
97+
);
98+
path = Protocols;
99+
sourceTree = "<group>";
100+
};
101+
64C4221D1717A4C800B1FF64 /* Supporting Files */ = {
102+
isa = PBXGroup;
103+
children = (
104+
64C4221E1717A4C800B1FF64 /* Protocols-Info.plist */,
105+
64C4221F1717A4C800B1FF64 /* InfoPlist.strings */,
106+
64C422221717A4C800B1FF64 /* main.m */,
107+
64C422241717A4C800B1FF64 /* Protocols-Prefix.pch */,
108+
64C422281717A4C800B1FF64 /* Default.png */,
109+
64C4222A1717A4C800B1FF64 /* [email protected] */,
110+
64C4222C1717A4C800B1FF64 /* [email protected] */,
111+
);
112+
name = "Supporting Files";
113+
sourceTree = "<group>";
114+
};
115+
/* End PBXGroup section */
116+
117+
/* Begin PBXNativeTarget section */
118+
64C422121717A4C800B1FF64 /* Protocols */ = {
119+
isa = PBXNativeTarget;
120+
buildConfigurationList = 64C422361717A4C800B1FF64 /* Build configuration list for PBXNativeTarget "Protocols" */;
121+
buildPhases = (
122+
64C4220F1717A4C800B1FF64 /* Sources */,
123+
64C422101717A4C800B1FF64 /* Frameworks */,
124+
64C422111717A4C800B1FF64 /* Resources */,
125+
);
126+
buildRules = (
127+
);
128+
dependencies = (
129+
);
130+
name = Protocols;
131+
productName = Protocols;
132+
productReference = 64C422131717A4C800B1FF64 /* Protocols.app */;
133+
productType = "com.apple.product-type.application";
134+
};
135+
/* End PBXNativeTarget section */
136+
137+
/* Begin PBXProject section */
138+
64C4220B1717A4C800B1FF64 /* Project object */ = {
139+
isa = PBXProject;
140+
attributes = {
141+
CLASSPREFIX = PR;
142+
LastUpgradeCheck = 0460;
143+
ORGANIZATIONNAME = Snowyla;
144+
};
145+
buildConfigurationList = 64C4220E1717A4C800B1FF64 /* Build configuration list for PBXProject "Protocols" */;
146+
compatibilityVersion = "Xcode 3.2";
147+
developmentRegion = English;
148+
hasScannedForEncodings = 0;
149+
knownRegions = (
150+
en,
151+
);
152+
mainGroup = 64C4220A1717A4C800B1FF64;
153+
productRefGroup = 64C422141717A4C800B1FF64 /* Products */;
154+
projectDirPath = "";
155+
projectRoot = "";
156+
targets = (
157+
64C422121717A4C800B1FF64 /* Protocols */,
158+
);
159+
};
160+
/* End PBXProject section */
161+
162+
/* Begin PBXResourcesBuildPhase section */
163+
64C422111717A4C800B1FF64 /* Resources */ = {
164+
isa = PBXResourcesBuildPhase;
165+
buildActionMask = 2147483647;
166+
files = (
167+
64C422211717A4C800B1FF64 /* InfoPlist.strings in Resources */,
168+
64C422291717A4C800B1FF64 /* Default.png in Resources */,
169+
64C4222B1717A4C800B1FF64 /* [email protected] in Resources */,
170+
64C4222D1717A4C800B1FF64 /* [email protected] in Resources */,
171+
64C422331717A4C800B1FF64 /* PRViewController.xib in Resources */,
172+
);
173+
runOnlyForDeploymentPostprocessing = 0;
174+
};
175+
/* End PBXResourcesBuildPhase section */
176+
177+
/* Begin PBXSourcesBuildPhase section */
178+
64C4220F1717A4C800B1FF64 /* Sources */ = {
179+
isa = PBXSourcesBuildPhase;
180+
buildActionMask = 2147483647;
181+
files = (
182+
64C422231717A4C800B1FF64 /* main.m in Sources */,
183+
64C422271717A4C800B1FF64 /* PRAppDelegate.m in Sources */,
184+
64C422301717A4C800B1FF64 /* PRViewController.m in Sources */,
185+
64C4223B1717ABFA00B1FF64 /* PRRequest.m in Sources */,
186+
);
187+
runOnlyForDeploymentPostprocessing = 0;
188+
};
189+
/* End PBXSourcesBuildPhase section */
190+
191+
/* Begin PBXVariantGroup section */
192+
64C4221F1717A4C800B1FF64 /* InfoPlist.strings */ = {
193+
isa = PBXVariantGroup;
194+
children = (
195+
64C422201717A4C800B1FF64 /* en */,
196+
);
197+
name = InfoPlist.strings;
198+
sourceTree = "<group>";
199+
};
200+
64C422311717A4C800B1FF64 /* PRViewController.xib */ = {
201+
isa = PBXVariantGroup;
202+
children = (
203+
64C422321717A4C800B1FF64 /* en */,
204+
);
205+
name = PRViewController.xib;
206+
sourceTree = "<group>";
207+
};
208+
/* End PBXVariantGroup section */
209+
210+
/* Begin XCBuildConfiguration section */
211+
64C422341717A4C800B1FF64 /* Debug */ = {
212+
isa = XCBuildConfiguration;
213+
buildSettings = {
214+
ALWAYS_SEARCH_USER_PATHS = NO;
215+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
216+
CLANG_CXX_LIBRARY = "libc++";
217+
CLANG_ENABLE_OBJC_ARC = YES;
218+
CLANG_WARN_CONSTANT_CONVERSION = YES;
219+
CLANG_WARN_EMPTY_BODY = YES;
220+
CLANG_WARN_ENUM_CONVERSION = YES;
221+
CLANG_WARN_INT_CONVERSION = YES;
222+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
223+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
224+
COPY_PHASE_STRIP = NO;
225+
GCC_C_LANGUAGE_STANDARD = gnu99;
226+
GCC_DYNAMIC_NO_PIC = NO;
227+
GCC_OPTIMIZATION_LEVEL = 0;
228+
GCC_PREPROCESSOR_DEFINITIONS = (
229+
"DEBUG=1",
230+
"$(inherited)",
231+
);
232+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
233+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
234+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
235+
GCC_WARN_UNUSED_VARIABLE = YES;
236+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
237+
ONLY_ACTIVE_ARCH = YES;
238+
SDKROOT = iphoneos;
239+
};
240+
name = Debug;
241+
};
242+
64C422351717A4C800B1FF64 /* Release */ = {
243+
isa = XCBuildConfiguration;
244+
buildSettings = {
245+
ALWAYS_SEARCH_USER_PATHS = NO;
246+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
247+
CLANG_CXX_LIBRARY = "libc++";
248+
CLANG_ENABLE_OBJC_ARC = YES;
249+
CLANG_WARN_CONSTANT_CONVERSION = YES;
250+
CLANG_WARN_EMPTY_BODY = YES;
251+
CLANG_WARN_ENUM_CONVERSION = YES;
252+
CLANG_WARN_INT_CONVERSION = YES;
253+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
254+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
255+
COPY_PHASE_STRIP = YES;
256+
GCC_C_LANGUAGE_STANDARD = gnu99;
257+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
258+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
259+
GCC_WARN_UNUSED_VARIABLE = YES;
260+
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
261+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
262+
SDKROOT = iphoneos;
263+
VALIDATE_PRODUCT = YES;
264+
};
265+
name = Release;
266+
};
267+
64C422371717A4C800B1FF64 /* Debug */ = {
268+
isa = XCBuildConfiguration;
269+
buildSettings = {
270+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
271+
GCC_PREFIX_HEADER = "Protocols/Protocols-Prefix.pch";
272+
INFOPLIST_FILE = "Protocols/Protocols-Info.plist";
273+
PRODUCT_NAME = "$(TARGET_NAME)";
274+
WRAPPER_EXTENSION = app;
275+
};
276+
name = Debug;
277+
};
278+
64C422381717A4C800B1FF64 /* Release */ = {
279+
isa = XCBuildConfiguration;
280+
buildSettings = {
281+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
282+
GCC_PREFIX_HEADER = "Protocols/Protocols-Prefix.pch";
283+
INFOPLIST_FILE = "Protocols/Protocols-Info.plist";
284+
PRODUCT_NAME = "$(TARGET_NAME)";
285+
WRAPPER_EXTENSION = app;
286+
};
287+
name = Release;
288+
};
289+
/* End XCBuildConfiguration section */
290+
291+
/* Begin XCConfigurationList section */
292+
64C4220E1717A4C800B1FF64 /* Build configuration list for PBXProject "Protocols" */ = {
293+
isa = XCConfigurationList;
294+
buildConfigurations = (
295+
64C422341717A4C800B1FF64 /* Debug */,
296+
64C422351717A4C800B1FF64 /* Release */,
297+
);
298+
defaultConfigurationIsVisible = 0;
299+
defaultConfigurationName = Release;
300+
};
301+
64C422361717A4C800B1FF64 /* Build configuration list for PBXNativeTarget "Protocols" */ = {
302+
isa = XCConfigurationList;
303+
buildConfigurations = (
304+
64C422371717A4C800B1FF64 /* Debug */,
305+
64C422381717A4C800B1FF64 /* Release */,
306+
);
307+
defaultConfigurationIsVisible = 0;
308+
};
309+
/* End XCConfigurationList section */
310+
};
311+
rootObject = 64C4220B1717A4C800B1FF64 /* Project object */;
312+
}

Protocols.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)