Skip to content

GameKit tvOS xcode26.2 b1

Alex Soto edited this page Nov 5, 2025 · 1 revision

#GameKit.framework

diff -ruN /Applications/Xcode_26.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKAccessPoint.h /Applications/Xcode_26.2.0-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKAccessPoint.h
--- /Applications/Xcode_26.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKAccessPoint.h	2025-10-11 08:16:31
+++ /Applications/Xcode_26.2.0-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKAccessPoint.h	2025-10-25 02:35:45
@@ -100,6 +100,9 @@
 /// Brings up the invite friends view.
 - (void)triggerAccessPointForFriendingWithHandler:(void (^ _Nullable)(void))handler NS_SWIFT_NAME(triggerForFriending(handler:)) NS_SWIFT_ASYNC(1) API_AVAILABLE(ios(26.0), macos(26.0)) API_UNAVAILABLE(tvos, visionos, watchos);
 
+/// Brings up the Arcade dashboard.
+- (void)triggerAccessPointForArcadeWithHandler:(void (^ _Nullable)(void))handler NS_SWIFT_NAME(triggerForArcade(handler:)) NS_SWIFT_ASYNC(1) API_AVAILABLE(ios(26.0), macos(26.0)) API_UNAVAILABLE(tvos, visionos, watchos);
+
 @end
 
 NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_26.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKLocalPlayer.h /Applications/Xcode_26.2.0-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKLocalPlayer.h
--- /Applications/Xcode_26.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKLocalPlayer.h	2025-10-17 21:32:55
+++ /Applications/Xcode_26.2.0-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/GameKit.framework/Headers/GKLocalPlayer.h	2025-10-24 22:20:26
@@ -62,25 +62,6 @@
 */
 - (void)loadChallengableFriendsWithCompletionHandler:(void(^__nullable)(NSArray<GKPlayer *> * __nullable challengableFriends, NSError * __nullable error))completionHandler;
 
-
-/** Set the default leaderboard for the current game
-    Possible reasons for error:
-    1. Communications problem
-    2. Unauthenticated player
-    3. Leaderboard not present
- */
-- (void)setDefaultLeaderboardIdentifier:(NSString *)leaderboardIdentifier completionHandler:(void(^__nullable)(NSError * __nullable error))completionHandler API_AVAILABLE(ios(7.0), macos(10.10), tvos(9.0), visionos(1.0), watchos(3.0));
-
-
-/** Load the default leaderboard identifier for the local player
-    Possible reasons for error:
-    1. Communications problem
-    2. Unauthenticated player
-    3. Leaderboard not present
- */
-- (void)loadDefaultLeaderboardIdentifierWithCompletionHandler:(void(^__nullable)(NSString * __nullable leaderboardIdentifier, NSError * __nullable error))completionHandler API_AVAILABLE(ios(7.0), macos(10.10), tvos(9.0), visionos(1.0), watchos(3.0));
-
-
 /**Generates a signature allowing 3rd party server to authenticate the GKLocalPlayer
     Possible reasons for error:
     1. Communications problem
@@ -132,6 +113,23 @@
     2. Unauthenticated player
  */
 - (void)generateIdentityVerificationSignatureWithCompletionHandler:(void (^__nullable)(NSURL * __nullable publicKeyUrl, NSData * __nullable signature, NSData * __nullable salt, uint64_t timestamp, NSError * __nullable error))completionHandler  API_DEPRECATED_WITH_REPLACEMENT("Use ``GKLocalPlayer/fetchItems(forIdentityVerificationSignature:)`` instead.", ios(7.0,13.5), macos(10.10,10.15.5), tvos(9.0,13.4.8), visionos(1.0,1.0), watchos(3.0,6.5));
+
+/** Load the default leaderboard identifier for the local player
+    Possible reasons for error:
+    1. Communications problem
+    2. Unauthenticated player
+    3. Leaderboard not present
+ */
+- (void)loadDefaultLeaderboardIdentifierWithCompletionHandler:(void(^__nullable)(NSString * __nullable leaderboardIdentifier, NSError * __nullable error))completionHandler API_DEPRECATED("No longer supported", ios(7.0,26.2), macos(10.10,26.2), tvos(9.0,26.2), visionos(1.0,26.2), watchos(3.0,26.2));
+
+/** Set the default leaderboard for the current game
+    Possible reasons for error:
+    1. Communications problem
+    2. Unauthenticated player
+    3. Leaderboard not present
+ */
+- (void)setDefaultLeaderboardIdentifier:(NSString *)leaderboardIdentifier completionHandler:(void(^__nullable)(NSError * __nullable error))completionHandler API_DEPRECATED("No longer supported", ios(7.0,26.2), macos(10.10,26.2), tvos(9.0,26.2), visionos(1.0,26.2), watchos(3.0,26.2));
+
 @end
 NS_ASSUME_NONNULL_END
 
Clone this wiki locally