- Notifications
You must be signed in to change notification settings - Fork548
WebKit iOS xcode26.0 b2
Alex Soto edited this pageJul 4, 2025 ·2 revisions
#WebKit.frameworkhttps://github.com/dotnet/macios/pull/23255
diff -ruN /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKHTTPCookieStore.h /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKHTTPCookieStore.h--- /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKHTTPCookieStore.h2025-06-02 00:56:24+++ /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKHTTPCookieStore.h2025-06-19 01:21:13@@ -63,6 +63,12 @@ */ - (void)setCookie:(NSHTTPCookie *)cookie completionHandler:(nullable WK_SWIFT_UI_ACTOR void (^)(void))completionHandler;+/*! @abstract Set multiple cookies.+ @param cookies An array of cookies to set.+ @param completionHandler A block to invoke once the cookies have been stored.+*/+- (void)setCookies:(NSArray<NSHTTPCookie *> *)cookies completionHandler:(nullable WK_SWIFT_UI_ACTOR void (^)(void))completionHandler API_AVAILABLE(macos(NA), ios(18.4), visionos(NA));+ /*! @abstract Delete the specified cookie. @param completionHandler A block to invoke once the cookie has been deleted. */diff -ruN /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKPreferences.h /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKPreferences.h--- /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKPreferences.h2025-06-02 02:24:41+++ /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKPreferences.h2025-06-19 02:06:57@@ -112,7 +112,8 @@ /*! @abstract A Boolean value indicating whether LookToScroll is enabled. @discussion The default value is `NO`. */-@property (nonatomic) BOOL isLookToScrollEnabled API_AVAILABLE(visionos(NA));++@property (nonatomic) BOOL isLookToScrollEnabled API_AVAILABLE(visionos(NA)) API_UNAVAILABLE(macos, ios, macCatalyst, tvos, watchos); @end