Skip to content

Commit c97baef

Browse files
committed
initial commit
0 parents  commit c97baef

File tree

8 files changed

+469
-0
lines changed

8 files changed

+469
-0
lines changed

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# OSX
2+
3+
.DS_Store
4+
.AppleDouble
5+
.LSOverride
6+
7+
# Thumbnails
8+
._*
9+
10+
# Files that might appear in the root of a volume
11+
.DocumentRevisions-V100
12+
.fseventsd
13+
.Spotlight-V100
14+
.TemporaryItems
15+
.Trashes
16+
.VolumeIcon.icns
17+
18+
# Directories potentially created on remote AFP share
19+
.AppleDB
20+
.AppleDesktop
21+
Network Trash Folder
22+
Temporary Items
23+
.apdisk
24+
25+
26+
# Xcode
27+
28+
## Build generated
29+
build/
30+
DerivedData
31+
32+
## Various settings
33+
*.pbxuser
34+
!default.pbxuser
35+
*.mode1v3
36+
!default.mode1v3
37+
*.mode2v3
38+
!default.mode2v3
39+
*.perspectivev3
40+
!default.perspectivev3
41+
xcuserdata
42+
43+
## Other
44+
*.xccheckout
45+
*.moved-aside
46+
*.xcuserstate
47+
*.xcscmblueprint
48+
49+
## Obj-C/Swift specific
50+
*.hmap
51+
*.ipa

simpleui.xcodeproj/project.pbxproj

Lines changed: 275 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,275 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
8750F1381CC241C50097E166 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8750F1341CC241C50097E166 /* Launch Screen.storyboard */; };
11+
8750F1391CC241C50097E166 /* main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8750F1351CC241C50097E166 /* main.storyboard */; };
12+
8750F13A1CC241C50097E166 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8750F1361CC241C50097E166 /* AppDelegate.swift */; };
13+
8750F13B1CC241C50097E166 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8750F1371CC241C50097E166 /* ViewController.swift */; };
14+
/* End PBXBuildFile section */
15+
16+
/* Begin PBXFileReference section */
17+
873D8B651AAA4BF60058BC00 /* SimpleUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SimpleUI.app; sourceTree = BUILT_PRODUCTS_DIR; };
18+
8750F1331CC241B90097E166 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = simpleui/Info.plist; sourceTree = SOURCE_ROOT; };
19+
8750F1341CC241C50097E166 /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = "Launch Screen.storyboard"; path = "simpleui/Launch Screen.storyboard"; sourceTree = SOURCE_ROOT; };
20+
8750F1351CC241C50097E166 /* main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = main.storyboard; path = simpleui/main.storyboard; sourceTree = SOURCE_ROOT; };
21+
8750F1361CC241C50097E166 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = simpleui/AppDelegate.swift; sourceTree = SOURCE_ROOT; };
22+
8750F1371CC241C50097E166 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = simpleui/ViewController.swift; sourceTree = SOURCE_ROOT; };
23+
/* End PBXFileReference section */
24+
25+
/* Begin PBXFrameworksBuildPhase section */
26+
873D8B621AAA4BF60058BC00 /* Frameworks */ = {
27+
isa = PBXFrameworksBuildPhase;
28+
buildActionMask = 2147483647;
29+
files = (
30+
);
31+
runOnlyForDeploymentPostprocessing = 0;
32+
};
33+
/* End PBXFrameworksBuildPhase section */
34+
35+
/* Begin PBXGroup section */
36+
873D8B5C1AAA4BF60058BC00 = {
37+
isa = PBXGroup;
38+
children = (
39+
873D8B671AAA4BF60058BC00 /* SimpleUI */,
40+
873D8B661AAA4BF60058BC00 /* Products */,
41+
);
42+
sourceTree = "<group>";
43+
};
44+
873D8B661AAA4BF60058BC00 /* Products */ = {
45+
isa = PBXGroup;
46+
children = (
47+
873D8B651AAA4BF60058BC00 /* SimpleUI.app */,
48+
);
49+
name = Products;
50+
sourceTree = "<group>";
51+
};
52+
873D8B671AAA4BF60058BC00 /* SimpleUI */ = {
53+
isa = PBXGroup;
54+
children = (
55+
8750F1361CC241C50097E166 /* AppDelegate.swift */,
56+
8750F1371CC241C50097E166 /* ViewController.swift */,
57+
8750F1351CC241C50097E166 /* main.storyboard */,
58+
873D8B681AAA4BF60058BC00 /* Supporting Files */,
59+
);
60+
name = SimpleUI;
61+
path = HelloWorld;
62+
sourceTree = "<group>";
63+
};
64+
873D8B681AAA4BF60058BC00 /* Supporting Files */ = {
65+
isa = PBXGroup;
66+
children = (
67+
8750F1331CC241B90097E166 /* Info.plist */,
68+
8750F1341CC241C50097E166 /* Launch Screen.storyboard */,
69+
);
70+
name = "Supporting Files";
71+
sourceTree = "<group>";
72+
};
73+
/* End PBXGroup section */
74+
75+
/* Begin PBXNativeTarget section */
76+
873D8B641AAA4BF60058BC00 /* SimpleUI */ = {
77+
isa = PBXNativeTarget;
78+
buildConfigurationList = 873D8B841AAA4BF60058BC00 /* Build configuration list for PBXNativeTarget "SimpleUI" */;
79+
buildPhases = (
80+
873D8B611AAA4BF60058BC00 /* Sources */,
81+
873D8B621AAA4BF60058BC00 /* Frameworks */,
82+
873D8B631AAA4BF60058BC00 /* Resources */,
83+
);
84+
buildRules = (
85+
);
86+
dependencies = (
87+
);
88+
name = SimpleUI;
89+
productName = HelloWorld;
90+
productReference = 873D8B651AAA4BF60058BC00 /* SimpleUI.app */;
91+
productType = "com.apple.product-type.application";
92+
};
93+
/* End PBXNativeTarget section */
94+
95+
/* Begin PBXProject section */
96+
873D8B5D1AAA4BF60058BC00 /* Project object */ = {
97+
isa = PBXProject;
98+
attributes = {
99+
LastSwiftUpdateCheck = 0730;
100+
LastUpgradeCheck = 0610;
101+
ORGANIZATIONNAME = "Nils Fischer";
102+
TargetAttributes = {
103+
873D8B641AAA4BF60058BC00 = {
104+
CreatedOnToolsVersion = 6.1.1;
105+
};
106+
};
107+
};
108+
buildConfigurationList = 873D8B601AAA4BF60058BC00 /* Build configuration list for PBXProject "simpleui" */;
109+
compatibilityVersion = "Xcode 3.2";
110+
developmentRegion = English;
111+
hasScannedForEncodings = 0;
112+
knownRegions = (
113+
en,
114+
Base,
115+
);
116+
mainGroup = 873D8B5C1AAA4BF60058BC00;
117+
productRefGroup = 873D8B661AAA4BF60058BC00 /* Products */;
118+
projectDirPath = "";
119+
projectRoot = "";
120+
targets = (
121+
873D8B641AAA4BF60058BC00 /* SimpleUI */,
122+
);
123+
};
124+
/* End PBXProject section */
125+
126+
/* Begin PBXResourcesBuildPhase section */
127+
873D8B631AAA4BF60058BC00 /* Resources */ = {
128+
isa = PBXResourcesBuildPhase;
129+
buildActionMask = 2147483647;
130+
files = (
131+
8750F1381CC241C50097E166 /* Launch Screen.storyboard in Resources */,
132+
8750F1391CC241C50097E166 /* main.storyboard in Resources */,
133+
);
134+
runOnlyForDeploymentPostprocessing = 0;
135+
};
136+
/* End PBXResourcesBuildPhase section */
137+
138+
/* Begin PBXSourcesBuildPhase section */
139+
873D8B611AAA4BF60058BC00 /* Sources */ = {
140+
isa = PBXSourcesBuildPhase;
141+
buildActionMask = 2147483647;
142+
files = (
143+
8750F13B1CC241C50097E166 /* ViewController.swift in Sources */,
144+
8750F13A1CC241C50097E166 /* AppDelegate.swift in Sources */,
145+
);
146+
runOnlyForDeploymentPostprocessing = 0;
147+
};
148+
/* End PBXSourcesBuildPhase section */
149+
150+
/* Begin XCBuildConfiguration section */
151+
873D8B821AAA4BF60058BC00 /* Debug */ = {
152+
isa = XCBuildConfiguration;
153+
buildSettings = {
154+
ALWAYS_SEARCH_USER_PATHS = NO;
155+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
156+
CLANG_CXX_LIBRARY = "libc++";
157+
CLANG_ENABLE_MODULES = YES;
158+
CLANG_ENABLE_OBJC_ARC = YES;
159+
CLANG_WARN_BOOL_CONVERSION = YES;
160+
CLANG_WARN_CONSTANT_CONVERSION = YES;
161+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
162+
CLANG_WARN_EMPTY_BODY = YES;
163+
CLANG_WARN_ENUM_CONVERSION = YES;
164+
CLANG_WARN_INT_CONVERSION = YES;
165+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
166+
CLANG_WARN_UNREACHABLE_CODE = YES;
167+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
168+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
169+
COPY_PHASE_STRIP = NO;
170+
ENABLE_STRICT_OBJC_MSGSEND = YES;
171+
GCC_C_LANGUAGE_STANDARD = gnu99;
172+
GCC_DYNAMIC_NO_PIC = NO;
173+
GCC_OPTIMIZATION_LEVEL = 0;
174+
GCC_PREPROCESSOR_DEFINITIONS = (
175+
"DEBUG=1",
176+
"$(inherited)",
177+
);
178+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
179+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
180+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
181+
GCC_WARN_UNDECLARED_SELECTOR = YES;
182+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
183+
GCC_WARN_UNUSED_FUNCTION = YES;
184+
GCC_WARN_UNUSED_VARIABLE = YES;
185+
MTL_ENABLE_DEBUG_INFO = YES;
186+
ONLY_ACTIVE_ARCH = YES;
187+
SDKROOT = iphoneos;
188+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
189+
TARGETED_DEVICE_FAMILY = "1,2";
190+
};
191+
name = Debug;
192+
};
193+
873D8B831AAA4BF60058BC00 /* Release */ = {
194+
isa = XCBuildConfiguration;
195+
buildSettings = {
196+
ALWAYS_SEARCH_USER_PATHS = NO;
197+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
198+
CLANG_CXX_LIBRARY = "libc++";
199+
CLANG_ENABLE_MODULES = YES;
200+
CLANG_ENABLE_OBJC_ARC = YES;
201+
CLANG_WARN_BOOL_CONVERSION = YES;
202+
CLANG_WARN_CONSTANT_CONVERSION = YES;
203+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
204+
CLANG_WARN_EMPTY_BODY = YES;
205+
CLANG_WARN_ENUM_CONVERSION = YES;
206+
CLANG_WARN_INT_CONVERSION = YES;
207+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
208+
CLANG_WARN_UNREACHABLE_CODE = YES;
209+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
210+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
211+
COPY_PHASE_STRIP = YES;
212+
ENABLE_NS_ASSERTIONS = NO;
213+
ENABLE_STRICT_OBJC_MSGSEND = YES;
214+
GCC_C_LANGUAGE_STANDARD = gnu99;
215+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
216+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
217+
GCC_WARN_UNDECLARED_SELECTOR = YES;
218+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
219+
GCC_WARN_UNUSED_FUNCTION = YES;
220+
GCC_WARN_UNUSED_VARIABLE = YES;
221+
MTL_ENABLE_DEBUG_INFO = NO;
222+
SDKROOT = iphoneos;
223+
TARGETED_DEVICE_FAMILY = "1,2";
224+
VALIDATE_PRODUCT = YES;
225+
};
226+
name = Release;
227+
};
228+
873D8B851AAA4BF60058BC00 /* Debug */ = {
229+
isa = XCBuildConfiguration;
230+
buildSettings = {
231+
CLANG_ENABLE_MODULES = YES;
232+
INFOPLIST_FILE = "$(SRCROOT)/simpleui/Info.plist";
233+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
234+
PRODUCT_BUNDLE_IDENTIFIER = "de.uni-heidelberg.ios-dev-kurs.SimpleUI";
235+
PRODUCT_NAME = "$(TARGET_NAME)";
236+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
237+
};
238+
name = Debug;
239+
};
240+
873D8B861AAA4BF60058BC00 /* Release */ = {
241+
isa = XCBuildConfiguration;
242+
buildSettings = {
243+
CLANG_ENABLE_MODULES = YES;
244+
INFOPLIST_FILE = "$(SRCROOT)/simpleui/Info.plist";
245+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
246+
PRODUCT_BUNDLE_IDENTIFIER = "de.uni-heidelberg.ios-dev-kurs.SimpleUI";
247+
PRODUCT_NAME = "$(TARGET_NAME)";
248+
};
249+
name = Release;
250+
};
251+
/* End XCBuildConfiguration section */
252+
253+
/* Begin XCConfigurationList section */
254+
873D8B601AAA4BF60058BC00 /* Build configuration list for PBXProject "simpleui" */ = {
255+
isa = XCConfigurationList;
256+
buildConfigurations = (
257+
873D8B821AAA4BF60058BC00 /* Debug */,
258+
873D8B831AAA4BF60058BC00 /* Release */,
259+
);
260+
defaultConfigurationIsVisible = 0;
261+
defaultConfigurationName = Release;
262+
};
263+
873D8B841AAA4BF60058BC00 /* Build configuration list for PBXNativeTarget "SimpleUI" */ = {
264+
isa = XCConfigurationList;
265+
buildConfigurations = (
266+
873D8B851AAA4BF60058BC00 /* Debug */,
267+
873D8B861AAA4BF60058BC00 /* Release */,
268+
);
269+
defaultConfigurationIsVisible = 0;
270+
defaultConfigurationName = Release;
271+
};
272+
/* End XCConfigurationList section */
273+
};
274+
rootObject = 873D8B5D1AAA4BF60058BC00 /* Project object */;
275+
}

simpleui.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.

simpleui/AppDelegate.swift

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
//
2+
// AppDelegate.swift
3+
// SimpleUI
4+
//
5+
// Created by Nils Fischer on 06.03.15.
6+
// Copyright (c) 2015 Nils Fischer. All rights reserved.
7+
//
8+
9+
import UIKit
10+
11+
@UIApplicationMain
12+
class AppDelegate: UIResponder, UIApplicationDelegate {
13+
14+
var window: UIWindow?
15+
16+
17+
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
18+
return true
19+
}
20+
21+
}
22+

0 commit comments

Comments
 (0)