Skip to content

Commit 2f4065c

Browse files
committed
mysterious context switching
1 parent 7c2cdf5 commit 2f4065c

File tree

13 files changed

+712
-0
lines changed

13 files changed

+712
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,365 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 55;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
9E5E74B626FB591B0015A27F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E5E74B526FB591B0015A27F /* AppDelegate.swift */; };
11+
9E5E74B826FB591B0015A27F /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E5E74B726FB591B0015A27F /* SceneDelegate.swift */; };
12+
9E5E74BA26FB591B0015A27F /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E5E74B926FB591B0015A27F /* ViewController.swift */; };
13+
9E5E74BD26FB591B0015A27F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9E5E74BB26FB591B0015A27F /* Main.storyboard */; };
14+
9E5E74BF26FB591C0015A27F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9E5E74BE26FB591C0015A27F /* Assets.xcassets */; };
15+
9E5E74C226FB591C0015A27F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9E5E74C026FB591C0015A27F /* LaunchScreen.storyboard */; };
16+
/* End PBXBuildFile section */
17+
18+
/* Begin PBXFileReference section */
19+
9E5E74B226FB591B0015A27F /* ContextSwitching.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ContextSwitching.app; sourceTree = BUILT_PRODUCTS_DIR; };
20+
9E5E74B526FB591B0015A27F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
21+
9E5E74B726FB591B0015A27F /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
22+
9E5E74B926FB591B0015A27F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
23+
9E5E74BC26FB591B0015A27F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
24+
9E5E74BE26FB591C0015A27F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
25+
9E5E74C126FB591C0015A27F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
26+
9E5E74C326FB591C0015A27F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
27+
/* End PBXFileReference section */
28+
29+
/* Begin PBXFrameworksBuildPhase section */
30+
9E5E74AF26FB591B0015A27F /* Frameworks */ = {
31+
isa = PBXFrameworksBuildPhase;
32+
buildActionMask = 2147483647;
33+
files = (
34+
);
35+
runOnlyForDeploymentPostprocessing = 0;
36+
};
37+
/* End PBXFrameworksBuildPhase section */
38+
39+
/* Begin PBXGroup section */
40+
9E5E74A926FB591B0015A27F = {
41+
isa = PBXGroup;
42+
children = (
43+
9E5E74B426FB591B0015A27F /* ContextSwitching */,
44+
9E5E74B326FB591B0015A27F /* Products */,
45+
);
46+
sourceTree = "<group>";
47+
};
48+
9E5E74B326FB591B0015A27F /* Products */ = {
49+
isa = PBXGroup;
50+
children = (
51+
9E5E74B226FB591B0015A27F /* ContextSwitching.app */,
52+
);
53+
name = Products;
54+
sourceTree = "<group>";
55+
};
56+
9E5E74B426FB591B0015A27F /* ContextSwitching */ = {
57+
isa = PBXGroup;
58+
children = (
59+
9E5E74B526FB591B0015A27F /* AppDelegate.swift */,
60+
9E5E74B726FB591B0015A27F /* SceneDelegate.swift */,
61+
9E5E74B926FB591B0015A27F /* ViewController.swift */,
62+
9E5E74BB26FB591B0015A27F /* Main.storyboard */,
63+
9E5E74BE26FB591C0015A27F /* Assets.xcassets */,
64+
9E5E74C026FB591C0015A27F /* LaunchScreen.storyboard */,
65+
9E5E74C326FB591C0015A27F /* Info.plist */,
66+
);
67+
path = ContextSwitching;
68+
sourceTree = "<group>";
69+
};
70+
/* End PBXGroup section */
71+
72+
/* Begin PBXNativeTarget section */
73+
9E5E74B126FB591B0015A27F /* ContextSwitching */ = {
74+
isa = PBXNativeTarget;
75+
buildConfigurationList = 9E5E74C626FB591C0015A27F /* Build configuration list for PBXNativeTarget "ContextSwitching" */;
76+
buildPhases = (
77+
9E5E74AE26FB591B0015A27F /* Sources */,
78+
9E5E74AF26FB591B0015A27F /* Frameworks */,
79+
9E5E74B026FB591B0015A27F /* Resources */,
80+
);
81+
buildRules = (
82+
);
83+
dependencies = (
84+
);
85+
name = ContextSwitching;
86+
productName = Crap;
87+
productReference = 9E5E74B226FB591B0015A27F /* ContextSwitching.app */;
88+
productType = "com.apple.product-type.application";
89+
};
90+
/* End PBXNativeTarget section */
91+
92+
/* Begin PBXProject section */
93+
9E5E74AA26FB591B0015A27F /* Project object */ = {
94+
isa = PBXProject;
95+
attributes = {
96+
BuildIndependentTargetsInParallel = 1;
97+
LastSwiftUpdateCheck = 1300;
98+
LastUpgradeCheck = 1300;
99+
TargetAttributes = {
100+
9E5E74B126FB591B0015A27F = {
101+
CreatedOnToolsVersion = 13.0;
102+
};
103+
};
104+
};
105+
buildConfigurationList = 9E5E74AD26FB591B0015A27F /* Build configuration list for PBXProject "ContextSwitching" */;
106+
compatibilityVersion = "Xcode 13.0";
107+
developmentRegion = en;
108+
hasScannedForEncodings = 0;
109+
knownRegions = (
110+
en,
111+
Base,
112+
);
113+
mainGroup = 9E5E74A926FB591B0015A27F;
114+
productRefGroup = 9E5E74B326FB591B0015A27F /* Products */;
115+
projectDirPath = "";
116+
projectRoot = "";
117+
targets = (
118+
9E5E74B126FB591B0015A27F /* ContextSwitching */,
119+
);
120+
};
121+
/* End PBXProject section */
122+
123+
/* Begin PBXResourcesBuildPhase section */
124+
9E5E74B026FB591B0015A27F /* Resources */ = {
125+
isa = PBXResourcesBuildPhase;
126+
buildActionMask = 2147483647;
127+
files = (
128+
9E5E74C226FB591C0015A27F /* LaunchScreen.storyboard in Resources */,
129+
9E5E74BF26FB591C0015A27F /* Assets.xcassets in Resources */,
130+
9E5E74BD26FB591B0015A27F /* Main.storyboard in Resources */,
131+
);
132+
runOnlyForDeploymentPostprocessing = 0;
133+
};
134+
/* End PBXResourcesBuildPhase section */
135+
136+
/* Begin PBXSourcesBuildPhase section */
137+
9E5E74AE26FB591B0015A27F /* Sources */ = {
138+
isa = PBXSourcesBuildPhase;
139+
buildActionMask = 2147483647;
140+
files = (
141+
9E5E74BA26FB591B0015A27F /* ViewController.swift in Sources */,
142+
9E5E74B626FB591B0015A27F /* AppDelegate.swift in Sources */,
143+
9E5E74B826FB591B0015A27F /* SceneDelegate.swift in Sources */,
144+
);
145+
runOnlyForDeploymentPostprocessing = 0;
146+
};
147+
/* End PBXSourcesBuildPhase section */
148+
149+
/* Begin PBXVariantGroup section */
150+
9E5E74BB26FB591B0015A27F /* Main.storyboard */ = {
151+
isa = PBXVariantGroup;
152+
children = (
153+
9E5E74BC26FB591B0015A27F /* Base */,
154+
);
155+
name = Main.storyboard;
156+
sourceTree = "<group>";
157+
};
158+
9E5E74C026FB591C0015A27F /* LaunchScreen.storyboard */ = {
159+
isa = PBXVariantGroup;
160+
children = (
161+
9E5E74C126FB591C0015A27F /* Base */,
162+
);
163+
name = LaunchScreen.storyboard;
164+
sourceTree = "<group>";
165+
};
166+
/* End PBXVariantGroup section */
167+
168+
/* Begin XCBuildConfiguration section */
169+
9E5E74C426FB591C0015A27F /* Debug */ = {
170+
isa = XCBuildConfiguration;
171+
buildSettings = {
172+
ALWAYS_SEARCH_USER_PATHS = NO;
173+
CLANG_ANALYZER_NONNULL = YES;
174+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
175+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
176+
CLANG_CXX_LIBRARY = "libc++";
177+
CLANG_ENABLE_MODULES = YES;
178+
CLANG_ENABLE_OBJC_ARC = YES;
179+
CLANG_ENABLE_OBJC_WEAK = YES;
180+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
181+
CLANG_WARN_BOOL_CONVERSION = YES;
182+
CLANG_WARN_COMMA = YES;
183+
CLANG_WARN_CONSTANT_CONVERSION = YES;
184+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
185+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
186+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
187+
CLANG_WARN_EMPTY_BODY = YES;
188+
CLANG_WARN_ENUM_CONVERSION = YES;
189+
CLANG_WARN_INFINITE_RECURSION = YES;
190+
CLANG_WARN_INT_CONVERSION = YES;
191+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
192+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
193+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
194+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
195+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
196+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
197+
CLANG_WARN_STRICT_PROTOTYPES = YES;
198+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
199+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
200+
CLANG_WARN_UNREACHABLE_CODE = YES;
201+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
202+
COPY_PHASE_STRIP = NO;
203+
DEBUG_INFORMATION_FORMAT = dwarf;
204+
ENABLE_STRICT_OBJC_MSGSEND = YES;
205+
ENABLE_TESTABILITY = YES;
206+
GCC_C_LANGUAGE_STANDARD = gnu11;
207+
GCC_DYNAMIC_NO_PIC = NO;
208+
GCC_NO_COMMON_BLOCKS = YES;
209+
GCC_OPTIMIZATION_LEVEL = 0;
210+
GCC_PREPROCESSOR_DEFINITIONS = (
211+
"DEBUG=1",
212+
"$(inherited)",
213+
);
214+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
215+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
216+
GCC_WARN_UNDECLARED_SELECTOR = YES;
217+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
218+
GCC_WARN_UNUSED_FUNCTION = YES;
219+
GCC_WARN_UNUSED_VARIABLE = YES;
220+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
221+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
222+
MTL_FAST_MATH = YES;
223+
ONLY_ACTIVE_ARCH = YES;
224+
SDKROOT = iphoneos;
225+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
226+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
227+
};
228+
name = Debug;
229+
};
230+
9E5E74C526FB591C0015A27F /* Release */ = {
231+
isa = XCBuildConfiguration;
232+
buildSettings = {
233+
ALWAYS_SEARCH_USER_PATHS = NO;
234+
CLANG_ANALYZER_NONNULL = YES;
235+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
236+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
237+
CLANG_CXX_LIBRARY = "libc++";
238+
CLANG_ENABLE_MODULES = YES;
239+
CLANG_ENABLE_OBJC_ARC = YES;
240+
CLANG_ENABLE_OBJC_WEAK = YES;
241+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
242+
CLANG_WARN_BOOL_CONVERSION = YES;
243+
CLANG_WARN_COMMA = YES;
244+
CLANG_WARN_CONSTANT_CONVERSION = YES;
245+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
246+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
247+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
248+
CLANG_WARN_EMPTY_BODY = YES;
249+
CLANG_WARN_ENUM_CONVERSION = YES;
250+
CLANG_WARN_INFINITE_RECURSION = YES;
251+
CLANG_WARN_INT_CONVERSION = YES;
252+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
253+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
254+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
255+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
256+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
257+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
258+
CLANG_WARN_STRICT_PROTOTYPES = YES;
259+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
260+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
261+
CLANG_WARN_UNREACHABLE_CODE = YES;
262+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
263+
COPY_PHASE_STRIP = NO;
264+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
265+
ENABLE_NS_ASSERTIONS = NO;
266+
ENABLE_STRICT_OBJC_MSGSEND = YES;
267+
GCC_C_LANGUAGE_STANDARD = gnu11;
268+
GCC_NO_COMMON_BLOCKS = YES;
269+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
270+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
271+
GCC_WARN_UNDECLARED_SELECTOR = YES;
272+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
273+
GCC_WARN_UNUSED_FUNCTION = YES;
274+
GCC_WARN_UNUSED_VARIABLE = YES;
275+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
276+
MTL_ENABLE_DEBUG_INFO = NO;
277+
MTL_FAST_MATH = YES;
278+
SDKROOT = iphoneos;
279+
SWIFT_COMPILATION_MODE = wholemodule;
280+
SWIFT_OPTIMIZATION_LEVEL = "-O";
281+
VALIDATE_PRODUCT = YES;
282+
};
283+
name = Release;
284+
};
285+
9E5E74C726FB591C0015A27F /* Debug */ = {
286+
isa = XCBuildConfiguration;
287+
buildSettings = {
288+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
289+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
290+
CODE_SIGN_STYLE = Automatic;
291+
CURRENT_PROJECT_VERSION = 1;
292+
DEVELOPMENT_TEAM = W3LHX5RGV2;
293+
GENERATE_INFOPLIST_FILE = YES;
294+
INFOPLIST_FILE = ContextSwitching/Info.plist;
295+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
296+
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
297+
INFOPLIST_KEY_UIMainStoryboardFile = Main;
298+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
299+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
300+
LD_RUNPATH_SEARCH_PATHS = (
301+
"$(inherited)",
302+
"@executable_path/Frameworks",
303+
);
304+
MARKETING_VERSION = 1.0;
305+
PRODUCT_BUNDLE_IDENTIFIER = com.neuburg.matt.ContextSwitching;
306+
PRODUCT_NAME = "$(TARGET_NAME)";
307+
SWIFT_EMIT_LOC_STRINGS = YES;
308+
SWIFT_VERSION = 5.0;
309+
TARGETED_DEVICE_FAMILY = "1,2";
310+
};
311+
name = Debug;
312+
};
313+
9E5E74C826FB591C0015A27F /* Release */ = {
314+
isa = XCBuildConfiguration;
315+
buildSettings = {
316+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
317+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
318+
CODE_SIGN_STYLE = Automatic;
319+
CURRENT_PROJECT_VERSION = 1;
320+
DEVELOPMENT_TEAM = W3LHX5RGV2;
321+
GENERATE_INFOPLIST_FILE = YES;
322+
INFOPLIST_FILE = ContextSwitching/Info.plist;
323+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
324+
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
325+
INFOPLIST_KEY_UIMainStoryboardFile = Main;
326+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
327+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
328+
LD_RUNPATH_SEARCH_PATHS = (
329+
"$(inherited)",
330+
"@executable_path/Frameworks",
331+
);
332+
MARKETING_VERSION = 1.0;
333+
PRODUCT_BUNDLE_IDENTIFIER = com.neuburg.matt.ContextSwitching;
334+
PRODUCT_NAME = "$(TARGET_NAME)";
335+
SWIFT_EMIT_LOC_STRINGS = YES;
336+
SWIFT_VERSION = 5.0;
337+
TARGETED_DEVICE_FAMILY = "1,2";
338+
};
339+
name = Release;
340+
};
341+
/* End XCBuildConfiguration section */
342+
343+
/* Begin XCConfigurationList section */
344+
9E5E74AD26FB591B0015A27F /* Build configuration list for PBXProject "ContextSwitching" */ = {
345+
isa = XCConfigurationList;
346+
buildConfigurations = (
347+
9E5E74C426FB591C0015A27F /* Debug */,
348+
9E5E74C526FB591C0015A27F /* Release */,
349+
);
350+
defaultConfigurationIsVisible = 0;
351+
defaultConfigurationName = Release;
352+
};
353+
9E5E74C626FB591C0015A27F /* Build configuration list for PBXNativeTarget "ContextSwitching" */ = {
354+
isa = XCConfigurationList;
355+
buildConfigurations = (
356+
9E5E74C726FB591C0015A27F /* Debug */,
357+
9E5E74C826FB591C0015A27F /* Release */,
358+
);
359+
defaultConfigurationIsVisible = 0;
360+
defaultConfigurationName = Release;
361+
};
362+
/* End XCConfigurationList section */
363+
};
364+
rootObject = 9E5E74AA26FB591B0015A27F /* Project object */;
365+
}

bk1ch05zp20MysteriousContextSwitching/ContextSwitching.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+7
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,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)