Skip to content

Commit 81fb80d

Browse files
committed
Set IPHONEOS_DEPLOYMENT_TARGET to 9.0 to fix Xcode 12 warning
> The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, > but the range of supported deployment target versions is 9.0 to 14.0.99.
1 parent 9842d7f commit 81fb80d

9 files changed

Lines changed: 50 additions & 71 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Use SF Symbols as icon images, [#41](https://github.com/bcylin/QuickTableViewController/pull/41) by [@ezfe](https://github.com/ezfe)
66
* Make `init(style:)` a designated initializer
77
* Add an option to override table view for style configuration, [#74](https://github.com/bcylin/QuickTableViewController/pull/74) by [@Tobisaninfo](https://github.com/Tobisaninfo)
8+
* Set IPHONEOS_DEPLOYMENT_TARGET to 9.0
89

910
## v1.2.4
1011

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ workspace "QuickTableViewController"
55
project "QuickTableViewController"
66

77
target "Dependencies" do
8-
platform :ios, "8.0"
8+
platform :ios, "9.0"
99
pod "SwiftLint"
1010
end

Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ SPEC REPOS:
1111
SPEC CHECKSUMS:
1212
SwiftLint: dfd554ff0dff17288ee574814ccdd5cea85d76f7
1313

14-
PODFILE CHECKSUM: 37910f1d33a79a1fba5bd1fa1197d99cef9bb6d6
14+
PODFILE CHECKSUM: b3ddd4e98ee56e9087046650bf3ab0fe9255aef7
1515

1616
COCOAPODS: 1.9.3

QuickTableViewController.xcodeproj/project.pbxproj

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,6 @@
12241224
SWIFT_VERSION = 5.0;
12251225
TARGETED_DEVICE_FAMILY = 3;
12261226
TEST_TARGET_NAME = "Example-tvOS";
1227-
TVOS_DEPLOYMENT_TARGET = 12.0;
12281227
};
12291228
name = Debug;
12301229
};
@@ -1251,7 +1250,6 @@
12511250
SWIFT_VERSION = 5.0;
12521251
TARGETED_DEVICE_FAMILY = 3;
12531252
TEST_TARGET_NAME = "Example-tvOS";
1254-
TVOS_DEPLOYMENT_TARGET = 12.0;
12551253
};
12561254
name = Release;
12571255
};
@@ -1274,7 +1272,6 @@
12741272
ENABLE_PREVIEWS = YES;
12751273
GCC_C_LANGUAGE_STANDARD = gnu11;
12761274
INFOPLIST_FILE = "";
1277-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
12781275
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
12791276
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
12801277
MTL_FAST_MATH = YES;
@@ -1304,7 +1301,6 @@
13041301
ENABLE_PREVIEWS = YES;
13051302
GCC_C_LANGUAGE_STANDARD = gnu11;
13061303
INFOPLIST_FILE = "";
1307-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
13081304
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
13091305
MTL_FAST_MATH = YES;
13101306
PRODUCT_BUNDLE_IDENTIFIER = io.github.bcylin.QuickTableViewController.Dependencies;
@@ -1326,7 +1322,6 @@
13261322
DEBUG_INFORMATION_FORMAT = dwarf;
13271323
DEVELOPMENT_TEAM = "";
13281324
INFOPLIST_FILE = "Example-iOS/Info.plist";
1329-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
13301325
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
13311326
PRODUCT_BUNDLE_IDENTIFIER = io.github.bcylin.QuickTableViewController.Example;
13321327
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1346,7 +1341,6 @@
13461341
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
13471342
DEVELOPMENT_TEAM = "";
13481343
INFOPLIST_FILE = "Example-iOS/Info.plist";
1349-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
13501344
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
13511345
PRODUCT_BUNDLE_IDENTIFIER = io.github.bcylin.QuickTableViewController.Example;
13521346
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1455,14 +1449,15 @@
14551449
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
14561450
GCC_WARN_UNUSED_FUNCTION = YES;
14571451
GCC_WARN_UNUSED_VARIABLE = YES;
1458-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1452+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
14591453
MTL_ENABLE_DEBUG_INFO = YES;
14601454
ONLY_ACTIVE_ARCH = YES;
14611455
SDKROOT = iphoneos;
14621456
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
14631457
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
14641458
SWIFT_VERSION = 4.2;
14651459
TARGETED_DEVICE_FAMILY = "1,2";
1460+
TVOS_DEPLOYMENT_TARGET = 9.0;
14661461
VERSIONING_SYSTEM = "apple-generic";
14671462
VERSION_INFO_PREFIX = "";
14681463
};
@@ -1513,12 +1508,13 @@
15131508
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
15141509
GCC_WARN_UNUSED_FUNCTION = YES;
15151510
GCC_WARN_UNUSED_VARIABLE = YES;
1516-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1511+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
15171512
MTL_ENABLE_DEBUG_INFO = NO;
15181513
SDKROOT = iphoneos;
15191514
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
15201515
SWIFT_VERSION = 4.2;
15211516
TARGETED_DEVICE_FAMILY = "1,2";
1517+
TVOS_DEPLOYMENT_TARGET = 9.0;
15221518
VALIDATE_PRODUCT = YES;
15231519
VERSIONING_SYSTEM = "apple-generic";
15241520
VERSION_INFO_PREFIX = "";
@@ -1684,7 +1680,6 @@
16841680
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
16851681
SWIFT_VERSION = 5.0;
16861682
TARGETED_DEVICE_FAMILY = 3;
1687-
TVOS_DEPLOYMENT_TARGET = 11.3;
16881683
};
16891684
name = Debug;
16901685
};
@@ -1708,7 +1703,6 @@
17081703
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
17091704
SWIFT_VERSION = 5.0;
17101705
TARGETED_DEVICE_FAMILY = 3;
1711-
TVOS_DEPLOYMENT_TARGET = 11.3;
17121706
};
17131707
name = Release;
17141708
};

QuickTableViewController.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1020"
3+
LastUpgradeVersion = "1200"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -27,6 +27,15 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<MacroExpansion>
31+
<BuildableReference
32+
BuildableIdentifier = "primary"
33+
BlueprintIdentifier = "B51F21A11F417037009BC2C9"
34+
BuildableName = "Example-iOS.app"
35+
BlueprintName = "Example-iOS"
36+
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
37+
</BuildableReference>
38+
</MacroExpansion>
3039
<Testables>
3140
<TestableReference
3241
skipped = "NO">
@@ -39,17 +48,6 @@
3948
</BuildableReference>
4049
</TestableReference>
4150
</Testables>
42-
<MacroExpansion>
43-
<BuildableReference
44-
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "B51F21A11F417037009BC2C9"
46-
BuildableName = "Example-iOS.app"
47-
BlueprintName = "Example-iOS"
48-
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
49-
</BuildableReference>
50-
</MacroExpansion>
51-
<AdditionalOptions>
52-
</AdditionalOptions>
5351
</TestAction>
5452
<LaunchAction
5553
buildConfiguration = "Debug"
@@ -71,8 +69,6 @@
7169
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
7270
</BuildableReference>
7371
</BuildableProductRunnable>
74-
<AdditionalOptions>
75-
</AdditionalOptions>
7672
</LaunchAction>
7773
<ProfileAction
7874
buildConfiguration = "Release"

QuickTableViewController.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1020"
3+
LastUpgradeVersion = "1200"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -27,6 +27,15 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<MacroExpansion>
31+
<BuildableReference
32+
BuildableIdentifier = "primary"
33+
BlueprintIdentifier = "B54A24522088D44A00EEBA26"
34+
BuildableName = "Example-tvOS.app"
35+
BlueprintName = "Example-tvOS"
36+
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
37+
</BuildableReference>
38+
</MacroExpansion>
3039
<Testables>
3140
<TestableReference
3241
skipped = "NO">
@@ -39,17 +48,6 @@
3948
</BuildableReference>
4049
</TestableReference>
4150
</Testables>
42-
<MacroExpansion>
43-
<BuildableReference
44-
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "B54A24522088D44A00EEBA26"
46-
BuildableName = "Example-tvOS.app"
47-
BlueprintName = "Example-tvOS"
48-
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
49-
</BuildableReference>
50-
</MacroExpansion>
51-
<AdditionalOptions>
52-
</AdditionalOptions>
5351
</TestAction>
5452
<LaunchAction
5553
buildConfiguration = "Debug"
@@ -71,8 +69,6 @@
7169
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
7270
</BuildableReference>
7371
</BuildableProductRunnable>
74-
<AdditionalOptions>
75-
</AdditionalOptions>
7672
</LaunchAction>
7773
<ProfileAction
7874
buildConfiguration = "Release"

QuickTableViewController.xcodeproj/xcshareddata/xcschemes/QuickTableViewController-iOS.xcscheme

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1020"
3+
LastUpgradeVersion = "1200"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -40,8 +40,17 @@
4040
buildConfiguration = "Debug"
4141
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
4242
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43-
codeCoverageEnabled = "YES"
44-
shouldUseLaunchSchemeArgsEnv = "YES">
43+
shouldUseLaunchSchemeArgsEnv = "YES"
44+
codeCoverageEnabled = "YES">
45+
<MacroExpansion>
46+
<BuildableReference
47+
BuildableIdentifier = "primary"
48+
BlueprintIdentifier = "B5334F121B8CC5BD00C64A6D"
49+
BuildableName = "QuickTableViewController.framework"
50+
BlueprintName = "QuickTableViewController-iOS"
51+
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
52+
</BuildableReference>
53+
</MacroExpansion>
4554
<Testables>
4655
<TestableReference
4756
skipped = "NO">
@@ -54,17 +63,6 @@
5463
</BuildableReference>
5564
</TestableReference>
5665
</Testables>
57-
<MacroExpansion>
58-
<BuildableReference
59-
BuildableIdentifier = "primary"
60-
BlueprintIdentifier = "B5334F121B8CC5BD00C64A6D"
61-
BuildableName = "QuickTableViewController.framework"
62-
BlueprintName = "QuickTableViewController-iOS"
63-
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
64-
</BuildableReference>
65-
</MacroExpansion>
66-
<AdditionalOptions>
67-
</AdditionalOptions>
6866
</TestAction>
6967
<LaunchAction
7068
buildConfiguration = "Debug"
@@ -85,8 +83,6 @@
8583
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
8684
</BuildableReference>
8785
</MacroExpansion>
88-
<AdditionalOptions>
89-
</AdditionalOptions>
9086
</LaunchAction>
9187
<ProfileAction
9288
buildConfiguration = "Release"

QuickTableViewController.xcodeproj/xcshareddata/xcschemes/QuickTableViewController-tvOS.xcscheme

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1020"
3+
LastUpgradeVersion = "1200"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -27,6 +27,15 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<MacroExpansion>
31+
<BuildableReference
32+
BuildableIdentifier = "primary"
33+
BlueprintIdentifier = "B54A24252088816D00EEBA26"
34+
BuildableName = "QuickTableViewController.framework"
35+
BlueprintName = "QuickTableViewController-tvOS"
36+
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
37+
</BuildableReference>
38+
</MacroExpansion>
3039
<Testables>
3140
<TestableReference
3241
skipped = "NO">
@@ -39,17 +48,6 @@
3948
</BuildableReference>
4049
</TestableReference>
4150
</Testables>
42-
<MacroExpansion>
43-
<BuildableReference
44-
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "B54A24252088816D00EEBA26"
46-
BuildableName = "QuickTableViewController.framework"
47-
BlueprintName = "QuickTableViewController-tvOS"
48-
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
49-
</BuildableReference>
50-
</MacroExpansion>
51-
<AdditionalOptions>
52-
</AdditionalOptions>
5351
</TestAction>
5452
<LaunchAction
5553
buildConfiguration = "Debug"
@@ -70,8 +68,6 @@
7068
ReferencedContainer = "container:QuickTableViewController.xcodeproj">
7169
</BuildableReference>
7270
</MacroExpansion>
73-
<AdditionalOptions>
74-
</AdditionalOptions>
7571
</LaunchAction>
7672
<ProfileAction
7773
buildConfiguration = "Release"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ QuickTableViewController | iOS | tvOS | Xcode | Swift
252252
`~> 1.0.0` | 8.0+ | 9.0+ | 9.4 | 4.1
253253
`~> 1.1.0` | 8.0+ | 9.0+ | 10.1 | 4.2
254254
`~> 1.2.0` | 8.0+ | 9.0+ | 10.2 | 5.0
255-
`~> 1.3.0` | 8.0+ | 9.0+ | 12.0 | 5.3
255+
`~> 1.3.0` | 9.0+ | 9.0+ | 12.0 | 5.3
256256

257257
## Installation
258258

0 commit comments

Comments
 (0)