Skip to content

Commit f68d875

Browse files
author
Luc Dion
committed
Update
1 parent 983656d commit f68d875

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

PinLayout.xcodeproj/project.pbxproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,6 @@
362362
};
363363
249EFE791E64FB4C00165E39 = {
364364
CreatedOnToolsVersion = 8.2.1;
365-
DevelopmentTeam = 4Q596JWQC5;
366365
LastSwiftMigration = 0820;
367366
ProvisioningStyle = Automatic;
368367
};
@@ -707,7 +706,7 @@
707706
CLANG_ENABLE_MODULES = YES;
708707
CODE_SIGN_IDENTITY = "";
709708
DEFINES_MODULE = YES;
710-
DEVELOPMENT_TEAM = 4Q596JWQC5;
709+
DEVELOPMENT_TEAM = "";
711710
DYLIB_COMPATIBILITY_VERSION = 1;
712711
DYLIB_CURRENT_VERSION = 1;
713712
DYLIB_INSTALL_NAME_BASE = "@rpath";
@@ -728,7 +727,7 @@
728727
CLANG_ENABLE_MODULES = YES;
729728
CODE_SIGN_IDENTITY = "";
730729
DEFINES_MODULE = YES;
731-
DEVELOPMENT_TEAM = 4Q596JWQC5;
730+
DEVELOPMENT_TEAM = "";
732731
DYLIB_COMPATIBILITY_VERSION = 1;
733732
DYLIB_CURRENT_VERSION = 1;
734733
DYLIB_INSTALL_NAME_BASE = "@rpath";

Sources/PinLayout.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ public protocol PinLayout {
371371

372372
Available only on iOS 11 and higher.
373373
*/
374-
@available(iOS 11.0, *)
374+
@available(tvOS 11.0, iOS 11.0, *)
375375
@discardableResult func margin(_ directionalInsets: NSDirectionalEdgeInsets) -> PinLayout
376376

377377
/**

Sources/PinLayoutImpl.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ class PinLayoutImpl: PinLayout {
799799
return self
800800
}
801801

802-
@available(iOS 11.0, *)
802+
@available(tvOS 11.0, iOS 11.0, *)
803803
@discardableResult
804804
func margin(_ directionalInsets: NSDirectionalEdgeInsets) -> PinLayout {
805805
marginTop = directionalInsets.top

0 commit comments

Comments
 (0)