Skip to content

Commit 4633241

Browse files
committed
Initial commit.
0 parents  commit 4633241

19 files changed

+1441
-0
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# xcode noise
2+
build/*
3+
*.pbxuser
4+
*.mode1v3
5+
*.xcworkspace
6+
xcuserdata
7+
project.xcworkspace/*
8+
xcuserdata/*
9+
10+
# osx noise
11+
.DS_Store
12+
profile
+324
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,324 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
E240A9AC148AB3770077282A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E240A9AB148AB3770077282A /* UIKit.framework */; };
11+
E240A9AE148AB3770077282A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E240A9AD148AB3770077282A /* Foundation.framework */; };
12+
E240A9B0148AB3770077282A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E240A9AF148AB3770077282A /* CoreGraphics.framework */; };
13+
E240A9B6148AB3770077282A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E240A9B4148AB3770077282A /* InfoPlist.strings */; };
14+
E240A9B8148AB3770077282A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E240A9B7148AB3770077282A /* main.m */; };
15+
E240A9BC148AB3770077282A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E240A9BB148AB3770077282A /* AppDelegate.m */; };
16+
E240A9BF148AB3770077282A /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E240A9BE148AB3770077282A /* ViewController.m */; };
17+
E240A9C2148AB3770077282A /* ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E240A9C0148AB3770077282A /* ViewController.xib */; };
18+
E240A9CC148AB4B60077282A /* IIViewDeckController.m in Sources */ = {isa = PBXBuildFile; fileRef = E240A9CB148AB4B60077282A /* IIViewDeckController.m */; };
19+
E240A9D2148ADC020077282A /* LeftViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E240A9D0148ADC020077282A /* LeftViewController.m */; };
20+
E240A9D3148ADC020077282A /* LeftViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E240A9D1148ADC020077282A /* LeftViewController.xib */; };
21+
E240A9D7148ADC230077282A /* RightViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E240A9D5148ADC230077282A /* RightViewController.m */; };
22+
E240A9D8148ADC230077282A /* RightViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E240A9D6148ADC230077282A /* RightViewController.xib */; };
23+
/* End PBXBuildFile section */
24+
25+
/* Begin PBXFileReference section */
26+
E240A9A7148AB3770077282A /* ViewDeckExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ViewDeckExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
27+
E240A9AB148AB3770077282A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
28+
E240A9AD148AB3770077282A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
29+
E240A9AF148AB3770077282A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
30+
E240A9B3148AB3770077282A /* ViewDeckExample-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ViewDeckExample-Info.plist"; sourceTree = "<group>"; };
31+
E240A9B5148AB3770077282A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
32+
E240A9B7148AB3770077282A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
33+
E240A9B9148AB3770077282A /* ViewDeckExample-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ViewDeckExample-Prefix.pch"; sourceTree = "<group>"; };
34+
E240A9BA148AB3770077282A /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
35+
E240A9BB148AB3770077282A /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
36+
E240A9BD148AB3770077282A /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
37+
E240A9BE148AB3770077282A /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
38+
E240A9C1148AB3770077282A /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController.xib; sourceTree = "<group>"; };
39+
E240A9CA148AB4B60077282A /* IIViewDeckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = IIViewDeckController.h; path = vendor/ViewDeck/IIViewDeckController.h; sourceTree = "<group>"; };
40+
E240A9CB148AB4B60077282A /* IIViewDeckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = IIViewDeckController.m; path = vendor/ViewDeck/IIViewDeckController.m; sourceTree = "<group>"; };
41+
E240A9CF148ADC020077282A /* LeftViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeftViewController.h; sourceTree = "<group>"; };
42+
E240A9D0148ADC020077282A /* LeftViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeftViewController.m; sourceTree = "<group>"; };
43+
E240A9D1148ADC020077282A /* LeftViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LeftViewController.xib; sourceTree = "<group>"; };
44+
E240A9D4148ADC230077282A /* RightViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RightViewController.h; sourceTree = "<group>"; };
45+
E240A9D5148ADC230077282A /* RightViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RightViewController.m; sourceTree = "<group>"; };
46+
E240A9D6148ADC230077282A /* RightViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RightViewController.xib; sourceTree = "<group>"; };
47+
/* End PBXFileReference section */
48+
49+
/* Begin PBXFrameworksBuildPhase section */
50+
E240A9A4148AB3770077282A /* Frameworks */ = {
51+
isa = PBXFrameworksBuildPhase;
52+
buildActionMask = 2147483647;
53+
files = (
54+
E240A9AC148AB3770077282A /* UIKit.framework in Frameworks */,
55+
E240A9AE148AB3770077282A /* Foundation.framework in Frameworks */,
56+
E240A9B0148AB3770077282A /* CoreGraphics.framework in Frameworks */,
57+
);
58+
runOnlyForDeploymentPostprocessing = 0;
59+
};
60+
/* End PBXFrameworksBuildPhase section */
61+
62+
/* Begin PBXGroup section */
63+
E240A99C148AB3770077282A = {
64+
isa = PBXGroup;
65+
children = (
66+
E240A9B1148AB3770077282A /* ViewDeckExample */,
67+
E240A9AA148AB3770077282A /* Frameworks */,
68+
E240A9A8148AB3770077282A /* Products */,
69+
);
70+
sourceTree = "<group>";
71+
};
72+
E240A9A8148AB3770077282A /* Products */ = {
73+
isa = PBXGroup;
74+
children = (
75+
E240A9A7148AB3770077282A /* ViewDeckExample.app */,
76+
);
77+
name = Products;
78+
sourceTree = "<group>";
79+
};
80+
E240A9AA148AB3770077282A /* Frameworks */ = {
81+
isa = PBXGroup;
82+
children = (
83+
E240A9AB148AB3770077282A /* UIKit.framework */,
84+
E240A9AD148AB3770077282A /* Foundation.framework */,
85+
E240A9AF148AB3770077282A /* CoreGraphics.framework */,
86+
);
87+
name = Frameworks;
88+
sourceTree = "<group>";
89+
};
90+
E240A9B1148AB3770077282A /* ViewDeckExample */ = {
91+
isa = PBXGroup;
92+
children = (
93+
E240A9B2148AB3770077282A /* Supporting Files */,
94+
E240A9C8148AB3F70077282A /* vendor */,
95+
E240A9BA148AB3770077282A /* AppDelegate.h */,
96+
E240A9BB148AB3770077282A /* AppDelegate.m */,
97+
E240A9BD148AB3770077282A /* ViewController.h */,
98+
E240A9BE148AB3770077282A /* ViewController.m */,
99+
E240A9C0148AB3770077282A /* ViewController.xib */,
100+
E240A9CF148ADC020077282A /* LeftViewController.h */,
101+
E240A9D0148ADC020077282A /* LeftViewController.m */,
102+
E240A9D1148ADC020077282A /* LeftViewController.xib */,
103+
E240A9D4148ADC230077282A /* RightViewController.h */,
104+
E240A9D5148ADC230077282A /* RightViewController.m */,
105+
E240A9D6148ADC230077282A /* RightViewController.xib */,
106+
);
107+
path = ViewDeckExample;
108+
sourceTree = "<group>";
109+
};
110+
E240A9B2148AB3770077282A /* Supporting Files */ = {
111+
isa = PBXGroup;
112+
children = (
113+
E240A9B3148AB3770077282A /* ViewDeckExample-Info.plist */,
114+
E240A9B4148AB3770077282A /* InfoPlist.strings */,
115+
E240A9B7148AB3770077282A /* main.m */,
116+
E240A9B9148AB3770077282A /* ViewDeckExample-Prefix.pch */,
117+
);
118+
name = "Supporting Files";
119+
sourceTree = "<group>";
120+
};
121+
E240A9C8148AB3F70077282A /* vendor */ = {
122+
isa = PBXGroup;
123+
children = (
124+
E240A9C9148AB4000077282A /* ViewDeck */,
125+
);
126+
name = vendor;
127+
sourceTree = "<group>";
128+
};
129+
E240A9C9148AB4000077282A /* ViewDeck */ = {
130+
isa = PBXGroup;
131+
children = (
132+
E240A9CA148AB4B60077282A /* IIViewDeckController.h */,
133+
E240A9CB148AB4B60077282A /* IIViewDeckController.m */,
134+
);
135+
name = ViewDeck;
136+
sourceTree = "<group>";
137+
};
138+
/* End PBXGroup section */
139+
140+
/* Begin PBXNativeTarget section */
141+
E240A9A6148AB3770077282A /* ViewDeckExample */ = {
142+
isa = PBXNativeTarget;
143+
buildConfigurationList = E240A9C5148AB3770077282A /* Build configuration list for PBXNativeTarget "ViewDeckExample" */;
144+
buildPhases = (
145+
E240A9A3148AB3770077282A /* Sources */,
146+
E240A9A4148AB3770077282A /* Frameworks */,
147+
E240A9A5148AB3770077282A /* Resources */,
148+
);
149+
buildRules = (
150+
);
151+
dependencies = (
152+
);
153+
name = ViewDeckExample;
154+
productName = ViewDeckExample;
155+
productReference = E240A9A7148AB3770077282A /* ViewDeckExample.app */;
156+
productType = "com.apple.product-type.application";
157+
};
158+
/* End PBXNativeTarget section */
159+
160+
/* Begin PBXProject section */
161+
E240A99E148AB3770077282A /* Project object */ = {
162+
isa = PBXProject;
163+
attributes = {
164+
LastUpgradeCheck = 0420;
165+
ORGANIZATIONNAME = "Adriaenssen BVBA";
166+
};
167+
buildConfigurationList = E240A9A1148AB3770077282A /* Build configuration list for PBXProject "ViewDeckExample" */;
168+
compatibilityVersion = "Xcode 3.2";
169+
developmentRegion = English;
170+
hasScannedForEncodings = 0;
171+
knownRegions = (
172+
en,
173+
);
174+
mainGroup = E240A99C148AB3770077282A;
175+
productRefGroup = E240A9A8148AB3770077282A /* Products */;
176+
projectDirPath = "";
177+
projectRoot = "";
178+
targets = (
179+
E240A9A6148AB3770077282A /* ViewDeckExample */,
180+
);
181+
};
182+
/* End PBXProject section */
183+
184+
/* Begin PBXResourcesBuildPhase section */
185+
E240A9A5148AB3770077282A /* Resources */ = {
186+
isa = PBXResourcesBuildPhase;
187+
buildActionMask = 2147483647;
188+
files = (
189+
E240A9B6148AB3770077282A /* InfoPlist.strings in Resources */,
190+
E240A9C2148AB3770077282A /* ViewController.xib in Resources */,
191+
E240A9D3148ADC020077282A /* LeftViewController.xib in Resources */,
192+
E240A9D8148ADC230077282A /* RightViewController.xib in Resources */,
193+
);
194+
runOnlyForDeploymentPostprocessing = 0;
195+
};
196+
/* End PBXResourcesBuildPhase section */
197+
198+
/* Begin PBXSourcesBuildPhase section */
199+
E240A9A3148AB3770077282A /* Sources */ = {
200+
isa = PBXSourcesBuildPhase;
201+
buildActionMask = 2147483647;
202+
files = (
203+
E240A9B8148AB3770077282A /* main.m in Sources */,
204+
E240A9BC148AB3770077282A /* AppDelegate.m in Sources */,
205+
E240A9BF148AB3770077282A /* ViewController.m in Sources */,
206+
E240A9CC148AB4B60077282A /* IIViewDeckController.m in Sources */,
207+
E240A9D2148ADC020077282A /* LeftViewController.m in Sources */,
208+
E240A9D7148ADC230077282A /* RightViewController.m in Sources */,
209+
);
210+
runOnlyForDeploymentPostprocessing = 0;
211+
};
212+
/* End PBXSourcesBuildPhase section */
213+
214+
/* Begin PBXVariantGroup section */
215+
E240A9B4148AB3770077282A /* InfoPlist.strings */ = {
216+
isa = PBXVariantGroup;
217+
children = (
218+
E240A9B5148AB3770077282A /* en */,
219+
);
220+
name = InfoPlist.strings;
221+
sourceTree = "<group>";
222+
};
223+
E240A9C0148AB3770077282A /* ViewController.xib */ = {
224+
isa = PBXVariantGroup;
225+
children = (
226+
E240A9C1148AB3770077282A /* en */,
227+
);
228+
name = ViewController.xib;
229+
sourceTree = "<group>";
230+
};
231+
/* End PBXVariantGroup section */
232+
233+
/* Begin XCBuildConfiguration section */
234+
E240A9C3148AB3770077282A /* Debug */ = {
235+
isa = XCBuildConfiguration;
236+
buildSettings = {
237+
ALWAYS_SEARCH_USER_PATHS = NO;
238+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
239+
CLANG_ENABLE_OBJC_ARC = YES;
240+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
241+
COPY_PHASE_STRIP = NO;
242+
GCC_C_LANGUAGE_STANDARD = gnu99;
243+
GCC_DYNAMIC_NO_PIC = NO;
244+
GCC_OPTIMIZATION_LEVEL = 0;
245+
GCC_PREPROCESSOR_DEFINITIONS = (
246+
"DEBUG=1",
247+
"$(inherited)",
248+
);
249+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
250+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
251+
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
252+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
253+
GCC_WARN_UNUSED_VARIABLE = YES;
254+
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
255+
SDKROOT = iphoneos;
256+
};
257+
name = Debug;
258+
};
259+
E240A9C4148AB3770077282A /* Release */ = {
260+
isa = XCBuildConfiguration;
261+
buildSettings = {
262+
ALWAYS_SEARCH_USER_PATHS = NO;
263+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
264+
CLANG_ENABLE_OBJC_ARC = YES;
265+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
266+
COPY_PHASE_STRIP = YES;
267+
GCC_C_LANGUAGE_STANDARD = gnu99;
268+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
269+
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
270+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
271+
GCC_WARN_UNUSED_VARIABLE = YES;
272+
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
273+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
274+
SDKROOT = iphoneos;
275+
VALIDATE_PRODUCT = YES;
276+
};
277+
name = Release;
278+
};
279+
E240A9C6148AB3770077282A /* Debug */ = {
280+
isa = XCBuildConfiguration;
281+
buildSettings = {
282+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
283+
GCC_PREFIX_HEADER = "ViewDeckExample/ViewDeckExample-Prefix.pch";
284+
INFOPLIST_FILE = "ViewDeckExample/ViewDeckExample-Info.plist";
285+
PRODUCT_NAME = "$(TARGET_NAME)";
286+
WRAPPER_EXTENSION = app;
287+
};
288+
name = Debug;
289+
};
290+
E240A9C7148AB3770077282A /* Release */ = {
291+
isa = XCBuildConfiguration;
292+
buildSettings = {
293+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
294+
GCC_PREFIX_HEADER = "ViewDeckExample/ViewDeckExample-Prefix.pch";
295+
INFOPLIST_FILE = "ViewDeckExample/ViewDeckExample-Info.plist";
296+
PRODUCT_NAME = "$(TARGET_NAME)";
297+
WRAPPER_EXTENSION = app;
298+
};
299+
name = Release;
300+
};
301+
/* End XCBuildConfiguration section */
302+
303+
/* Begin XCConfigurationList section */
304+
E240A9A1148AB3770077282A /* Build configuration list for PBXProject "ViewDeckExample" */ = {
305+
isa = XCConfigurationList;
306+
buildConfigurations = (
307+
E240A9C3148AB3770077282A /* Debug */,
308+
E240A9C4148AB3770077282A /* Release */,
309+
);
310+
defaultConfigurationIsVisible = 0;
311+
defaultConfigurationName = Release;
312+
};
313+
E240A9C5148AB3770077282A /* Build configuration list for PBXNativeTarget "ViewDeckExample" */ = {
314+
isa = XCConfigurationList;
315+
buildConfigurations = (
316+
E240A9C6148AB3770077282A /* Debug */,
317+
E240A9C7148AB3770077282A /* Release */,
318+
);
319+
defaultConfigurationIsVisible = 0;
320+
};
321+
/* End XCConfigurationList section */
322+
};
323+
rootObject = E240A99E148AB3770077282A /* Project object */;
324+
}

ViewDeckExample/AppDelegate.h

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// AppDelegate.h
3+
// ViewDeckExample
4+
//
5+
// Created by Tom Adriaenssen on 03/12/11.
6+
// Copyright (c) 2011 Adriaenssen BVBA. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
@class ViewController;
12+
13+
@interface AppDelegate : UIResponder <UIApplicationDelegate>
14+
15+
@property (strong, nonatomic) UIWindow *window;
16+
17+
@property (strong, nonatomic) UIViewController *viewController;
18+
19+
@end

0 commit comments

Comments
 (0)