Skip to content

Commit 975ce3c

Browse files
committed
Initial Commit
1 parent 09be932 commit 975ce3c

File tree

6 files changed

+387
-193
lines changed

6 files changed

+387
-193
lines changed

Example/KBStickerView.xcodeproj/project.pbxproj

Lines changed: 19 additions & 167 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,16 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
175E3A418B67AA181B698107 /* Pods_KBStickerView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 715DE20EBB48E13D7CC0AD6C /* Pods_KBStickerView_Tests.framework */; };
1110
607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };
1211
607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; };
1312
607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; };
1413
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
1514
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
16-
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
1715
A44371C4EC56FBDB14D10E0A /* Pods_KBStickerView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B376B325C9616FADFF4E7D38 /* Pods_KBStickerView_Example.framework */; };
16+
A828F6B325FD7D5E003F6B02 /* stickers.bundle in Resources */ = {isa = PBXBuildFile; fileRef = A828F6B225FD7D5E003F6B02 /* stickers.bundle */; };
17+
A828F6C725FD952A003F6B02 /* StickerCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A828F6C625FD952A003F6B02 /* StickerCell.swift */; };
1818
/* End PBXBuildFile section */
1919

20-
/* Begin PBXContainerItemProxy section */
21-
607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = {
22-
isa = PBXContainerItemProxy;
23-
containerPortal = 607FACC81AFB9204008FA782 /* Project object */;
24-
proxyType = 1;
25-
remoteGlobalIDString = 607FACCF1AFB9204008FA782;
26-
remoteInfo = KBStickerView;
27-
};
28-
/* End PBXContainerItemProxy section */
29-
3020
/* Begin PBXFileReference section */
3121
0D42BF38D5164A01C6B945E6 /* Pods-KBStickerView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KBStickerView_Example.debug.xcconfig"; path = "Target Support Files/Pods-KBStickerView_Example/Pods-KBStickerView_Example.debug.xcconfig"; sourceTree = "<group>"; };
3222
1E4CF05720FFD051E17E92BF /* Pods-KBStickerView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KBStickerView_Tests.debug.xcconfig"; path = "Target Support Files/Pods-KBStickerView_Tests/Pods-KBStickerView_Tests.debug.xcconfig"; sourceTree = "<group>"; };
@@ -38,15 +28,14 @@
3828
607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
3929
607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
4030
607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
41-
607FACE51AFB9204008FA782 /* KBStickerView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KBStickerView_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
42-
607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
43-
607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
4431
6C4D79B675E82C502BE0E67C /* Pods-KBStickerView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KBStickerView_Example.release.xcconfig"; path = "Target Support Files/Pods-KBStickerView_Example/Pods-KBStickerView_Example.release.xcconfig"; sourceTree = "<group>"; };
4532
715DE20EBB48E13D7CC0AD6C /* Pods_KBStickerView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KBStickerView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
33+
A828F6B225FD7D5E003F6B02 /* stickers.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = stickers.bundle; sourceTree = "<group>"; };
34+
A828F6C625FD952A003F6B02 /* StickerCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StickerCell.swift; sourceTree = "<group>"; };
4635
B376B325C9616FADFF4E7D38 /* Pods_KBStickerView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KBStickerView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
47-
D2CFA98CB4EBEBCF01B0F77E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
48-
D300E8695C953E6B8A52B6A2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; };
49-
D368161A7D6F6EABB3631663 /* KBStickerView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = KBStickerView.podspec; path = ../KBStickerView.podspec; sourceTree = "<group>"; };
36+
D2CFA98CB4EBEBCF01B0F77E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
37+
D300E8695C953E6B8A52B6A2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
38+
D368161A7D6F6EABB3631663 /* KBStickerView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = KBStickerView.podspec; path = ../KBStickerView.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
5039
/* End PBXFileReference section */
5140

5241
/* Begin PBXFrameworksBuildPhase section */
@@ -58,14 +47,6 @@
5847
);
5948
runOnlyForDeploymentPostprocessing = 0;
6049
};
61-
607FACE21AFB9204008FA782 /* Frameworks */ = {
62-
isa = PBXFrameworksBuildPhase;
63-
buildActionMask = 2147483647;
64-
files = (
65-
175E3A418B67AA181B698107 /* Pods_KBStickerView_Tests.framework in Frameworks */,
66-
);
67-
runOnlyForDeploymentPostprocessing = 0;
68-
};
6950
/* End PBXFrameworksBuildPhase section */
7051

7152
/* Begin PBXGroup section */
@@ -74,7 +55,6 @@
7455
children = (
7556
607FACF51AFB993E008FA782 /* Podspec Metadata */,
7657
607FACD21AFB9204008FA782 /* Example for KBStickerView */,
77-
607FACE81AFB9204008FA782 /* Tests */,
7858
607FACD11AFB9204008FA782 /* Products */,
7959
AF75FF1E06C103CBCEC43B24 /* Pods */,
8060
B1F54A05D65F7E68761EC08C /* Frameworks */,
@@ -85,20 +65,21 @@
8565
isa = PBXGroup;
8666
children = (
8767
607FACD01AFB9204008FA782 /* KBStickerView_Example.app */,
88-
607FACE51AFB9204008FA782 /* KBStickerView_Tests.xctest */,
8968
);
9069
name = Products;
9170
sourceTree = "<group>";
9271
};
9372
607FACD21AFB9204008FA782 /* Example for KBStickerView */ = {
9473
isa = PBXGroup;
9574
children = (
75+
A828F6B225FD7D5E003F6B02 /* stickers.bundle */,
9676
607FACD51AFB9204008FA782 /* AppDelegate.swift */,
9777
607FACD71AFB9204008FA782 /* ViewController.swift */,
9878
607FACD91AFB9204008FA782 /* Main.storyboard */,
9979
607FACDC1AFB9204008FA782 /* Images.xcassets */,
10080
607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
10181
607FACD31AFB9204008FA782 /* Supporting Files */,
82+
A828F6C625FD952A003F6B02 /* StickerCell.swift */,
10283
);
10384
name = "Example for KBStickerView";
10485
path = KBStickerView;
@@ -112,23 +93,6 @@
11293
name = "Supporting Files";
11394
sourceTree = "<group>";
11495
};
115-
607FACE81AFB9204008FA782 /* Tests */ = {
116-
isa = PBXGroup;
117-
children = (
118-
607FACEB1AFB9204008FA782 /* Tests.swift */,
119-
607FACE91AFB9204008FA782 /* Supporting Files */,
120-
);
121-
path = Tests;
122-
sourceTree = "<group>";
123-
};
124-
607FACE91AFB9204008FA782 /* Supporting Files */ = {
125-
isa = PBXGroup;
126-
children = (
127-
607FACEA1AFB9204008FA782 /* Info.plist */,
128-
);
129-
name = "Supporting Files";
130-
sourceTree = "<group>";
131-
};
13296
607FACF51AFB993E008FA782 /* Podspec Metadata */ = {
13397
isa = PBXGroup;
13498
children = (
@@ -147,7 +111,6 @@
147111
1E4CF05720FFD051E17E92BF /* Pods-KBStickerView_Tests.debug.xcconfig */,
148112
5DF941EE74B46DCA129BB0FB /* Pods-KBStickerView_Tests.release.xcconfig */,
149113
);
150-
name = Pods;
151114
path = Pods;
152115
sourceTree = "<group>";
153116
};
@@ -182,25 +145,6 @@
182145
productReference = 607FACD01AFB9204008FA782 /* KBStickerView_Example.app */;
183146
productType = "com.apple.product-type.application";
184147
};
185-
607FACE41AFB9204008FA782 /* KBStickerView_Tests */ = {
186-
isa = PBXNativeTarget;
187-
buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "KBStickerView_Tests" */;
188-
buildPhases = (
189-
A282167A062ECB1BE350CF82 /* [CP] Check Pods Manifest.lock */,
190-
607FACE11AFB9204008FA782 /* Sources */,
191-
607FACE21AFB9204008FA782 /* Frameworks */,
192-
607FACE31AFB9204008FA782 /* Resources */,
193-
);
194-
buildRules = (
195-
);
196-
dependencies = (
197-
607FACE71AFB9204008FA782 /* PBXTargetDependency */,
198-
);
199-
name = KBStickerView_Tests;
200-
productName = Tests;
201-
productReference = 607FACE51AFB9204008FA782 /* KBStickerView_Tests.xctest */;
202-
productType = "com.apple.product-type.bundle.unit-test";
203-
};
204148
/* End PBXNativeTarget section */
205149

206150
/* Begin PBXProject section */
@@ -213,20 +157,17 @@
213157
TargetAttributes = {
214158
607FACCF1AFB9204008FA782 = {
215159
CreatedOnToolsVersion = 6.3.1;
160+
DevelopmentTeam = YM8KD4B2T3;
216161
LastSwiftMigration = 0900;
217162
};
218-
607FACE41AFB9204008FA782 = {
219-
CreatedOnToolsVersion = 6.3.1;
220-
LastSwiftMigration = 0900;
221-
TestTargetID = 607FACCF1AFB9204008FA782;
222-
};
223163
};
224164
};
225165
buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "KBStickerView" */;
226166
compatibilityVersion = "Xcode 3.2";
227167
developmentRegion = English;
228168
hasScannedForEncodings = 0;
229169
knownRegions = (
170+
English,
230171
en,
231172
Base,
232173
);
@@ -236,7 +177,6 @@
236177
projectRoot = "";
237178
targets = (
238179
607FACCF1AFB9204008FA782 /* KBStickerView_Example */,
239-
607FACE41AFB9204008FA782 /* KBStickerView_Tests */,
240180
);
241181
};
242182
/* End PBXProject section */
@@ -249,13 +189,7 @@
249189
607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */,
250190
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */,
251191
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */,
252-
);
253-
runOnlyForDeploymentPostprocessing = 0;
254-
};
255-
607FACE31AFB9204008FA782 /* Resources */ = {
256-
isa = PBXResourcesBuildPhase;
257-
buildActionMask = 2147483647;
258-
files = (
192+
A828F6B325FD7D5E003F6B02 /* stickers.bundle in Resources */,
259193
);
260194
runOnlyForDeploymentPostprocessing = 0;
261195
};
@@ -302,28 +236,6 @@
302236
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
303237
showEnvVarsInLog = 0;
304238
};
305-
A282167A062ECB1BE350CF82 /* [CP] Check Pods Manifest.lock */ = {
306-
isa = PBXShellScriptBuildPhase;
307-
buildActionMask = 2147483647;
308-
files = (
309-
);
310-
inputFileListPaths = (
311-
);
312-
inputPaths = (
313-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
314-
"${PODS_ROOT}/Manifest.lock",
315-
);
316-
name = "[CP] Check Pods Manifest.lock";
317-
outputFileListPaths = (
318-
);
319-
outputPaths = (
320-
"$(DERIVED_FILE_DIR)/Pods-KBStickerView_Tests-checkManifestLockResult.txt",
321-
);
322-
runOnlyForDeploymentPostprocessing = 0;
323-
shellPath = /bin/sh;
324-
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
325-
showEnvVarsInLog = 0;
326-
};
327239
/* End PBXShellScriptBuildPhase section */
328240

329241
/* Begin PBXSourcesBuildPhase section */
@@ -332,28 +244,13 @@
332244
buildActionMask = 2147483647;
333245
files = (
334246
607FACD81AFB9204008FA782 /* ViewController.swift in Sources */,
247+
A828F6C725FD952A003F6B02 /* StickerCell.swift in Sources */,
335248
607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,
336249
);
337250
runOnlyForDeploymentPostprocessing = 0;
338251
};
339-
607FACE11AFB9204008FA782 /* Sources */ = {
340-
isa = PBXSourcesBuildPhase;
341-
buildActionMask = 2147483647;
342-
files = (
343-
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
344-
);
345-
runOnlyForDeploymentPostprocessing = 0;
346-
};
347252
/* End PBXSourcesBuildPhase section */
348253

349-
/* Begin PBXTargetDependency section */
350-
607FACE71AFB9204008FA782 /* PBXTargetDependency */ = {
351-
isa = PBXTargetDependency;
352-
target = 607FACCF1AFB9204008FA782 /* KBStickerView_Example */;
353-
targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */;
354-
};
355-
/* End PBXTargetDependency section */
356-
357254
/* Begin PBXVariantGroup section */
358255
607FACD91AFB9204008FA782 /* Main.storyboard */ = {
359256
isa = PBXVariantGroup;
@@ -424,6 +321,7 @@
424321
ONLY_ACTIVE_ARCH = YES;
425322
SDKROOT = iphoneos;
426323
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
324+
SWIFT_VERSION = 5.0;
427325
};
428326
name = Debug;
429327
};
@@ -469,6 +367,7 @@
469367
MTL_ENABLE_DEBUG_INFO = NO;
470368
SDKROOT = iphoneos;
471369
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
370+
SWIFT_VERSION = 5.0;
472371
VALIDATE_PRODUCT = YES;
473372
};
474373
name = Release;
@@ -478,13 +377,14 @@
478377
baseConfigurationReference = 0D42BF38D5164A01C6B945E6 /* Pods-KBStickerView_Example.debug.xcconfig */;
479378
buildSettings = {
480379
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
380+
DEVELOPMENT_TEAM = YM8KD4B2T3;
481381
INFOPLIST_FILE = KBStickerView/Info.plist;
482382
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
483383
MODULE_NAME = ExampleApp;
484384
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
485385
PRODUCT_NAME = "$(TARGET_NAME)";
486386
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
487-
SWIFT_VERSION = 4.0;
387+
SWIFT_VERSION = 5.0;
488388
};
489389
name = Debug;
490390
};
@@ -493,53 +393,14 @@
493393
baseConfigurationReference = 6C4D79B675E82C502BE0E67C /* Pods-KBStickerView_Example.release.xcconfig */;
494394
buildSettings = {
495395
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
396+
DEVELOPMENT_TEAM = YM8KD4B2T3;
496397
INFOPLIST_FILE = KBStickerView/Info.plist;
497398
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
498399
MODULE_NAME = ExampleApp;
499400
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
500401
PRODUCT_NAME = "$(TARGET_NAME)";
501402
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
502-
SWIFT_VERSION = 4.0;
503-
};
504-
name = Release;
505-
};
506-
607FACF31AFB9204008FA782 /* Debug */ = {
507-
isa = XCBuildConfiguration;
508-
baseConfigurationReference = 1E4CF05720FFD051E17E92BF /* Pods-KBStickerView_Tests.debug.xcconfig */;
509-
buildSettings = {
510-
FRAMEWORK_SEARCH_PATHS = (
511-
"$(PLATFORM_DIR)/Developer/Library/Frameworks",
512-
"$(inherited)",
513-
);
514-
GCC_PREPROCESSOR_DEFINITIONS = (
515-
"DEBUG=1",
516-
"$(inherited)",
517-
);
518-
INFOPLIST_FILE = Tests/Info.plist;
519-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
520-
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
521-
PRODUCT_NAME = "$(TARGET_NAME)";
522-
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
523-
SWIFT_VERSION = 4.0;
524-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KBStickerView_Example.app/KBStickerView_Example";
525-
};
526-
name = Debug;
527-
};
528-
607FACF41AFB9204008FA782 /* Release */ = {
529-
isa = XCBuildConfiguration;
530-
baseConfigurationReference = 5DF941EE74B46DCA129BB0FB /* Pods-KBStickerView_Tests.release.xcconfig */;
531-
buildSettings = {
532-
FRAMEWORK_SEARCH_PATHS = (
533-
"$(PLATFORM_DIR)/Developer/Library/Frameworks",
534-
"$(inherited)",
535-
);
536-
INFOPLIST_FILE = Tests/Info.plist;
537-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
538-
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
539-
PRODUCT_NAME = "$(TARGET_NAME)";
540-
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
541-
SWIFT_VERSION = 4.0;
542-
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KBStickerView_Example.app/KBStickerView_Example";
403+
SWIFT_VERSION = 5.0;
543404
};
544405
name = Release;
545406
};
@@ -564,15 +425,6 @@
564425
defaultConfigurationIsVisible = 0;
565426
defaultConfigurationName = Release;
566427
};
567-
607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "KBStickerView_Tests" */ = {
568-
isa = XCConfigurationList;
569-
buildConfigurations = (
570-
607FACF31AFB9204008FA782 /* Debug */,
571-
607FACF41AFB9204008FA782 /* Release */,
572-
);
573-
defaultConfigurationIsVisible = 0;
574-
defaultConfigurationName = Release;
575-
};
576428
/* End XCConfigurationList section */
577429
};
578430
rootObject = 607FACC81AFB9204008FA782 /* Project object */;

Example/KBStickerView/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
1414
var window: UIWindow?
1515

1616

17-
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
17+
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
1818
// Override point for customization after application launch.
1919
return true
2020
}

0 commit comments

Comments
 (0)