Skip to content

FileProvider iOS xcode26.0 b2

Alex Soto edited this page Jun 24, 2025 · 1 revision

#FileProvider.framework

diff -ruN /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearch.h /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearch.h
--- /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearch.h	2025-05-23 06:21:16
+++ /Applications/Xcode_26.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearch.h	2025-06-17 23:28:42
@@ -63,7 +63,7 @@
  If the extension returns more than this number of results in a single page enumeration,
  the system will crash the extension process.
  */
-@property (nonatomic, readonly) NSInteger maxNumberOfResults;
+@property (nonatomic, readonly) NSUInteger maximumNumberOfResultsPerPage;
 
 @end
 
@@ -102,6 +102,10 @@
 
 /// A plaintext string, representing the query the user entered into the system search UI.
 @property (nonatomic, readonly) NSString *query;
+
+/// How many results the system is requesting. This is a hint to the extension, to help avoid
+/// unnecessary work. The extension may return more results than this.
+@property (nonatomic, readonly) NSUInteger desiredNumberOfResults;
 
 @end
 
Clone this wiki locally