Skip to content

Commit d8a3b7f

Browse files
authored
Merge pull request #15 from inamiy/DebugForms/fix-UserDefaultsListView-iOS14
[DebugForms] Fix UserDefaultsListView in iOS14
2 parents 43e9633 + 072ffc9 commit d8a3b7f

File tree

4 files changed

+406
-7
lines changed

4 files changed

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

Examples/SherlockForms-Gallery-iOS14.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)