Skip to content

FileProvider iOS xcode14.3 beta1

Alex Soto edited this page Mar 15, 2023 · 2 revisions

#FileProvider.framework https://github.com/xamarin/xamarin-macios/pull/17810

diff -ruN /Applications/Xcode_14.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode_14.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h
--- /Applications/Xcode_14.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h	2022-11-10 19:16:32
+++ /Applications/Xcode_14.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h	2023-02-12 14:11:14
@@ -227,6 +227,8 @@
  */
 @property (readwrite, assign) BOOL supportsSyncingTrash FILEPROVIDER_API_AVAILABILITY_V5_0;
 
+@property (nonatomic, readonly, nullable) NSUUID *volumeUUID;
+
 @end
 
 FILEPROVIDER_API_AVAILABILITY_V2
diff -ruN /Applications/Xcode_14.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode_14.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h
--- /Applications/Xcode_14.2.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h	2022-11-12 15:59:36
+++ /Applications/Xcode_14.3.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h	2023-02-11 16:44:07
@@ -92,8 +92,8 @@
  In addition to using this method, your application/extension can register for
  pushes using the PKPushTypeFileProvider push type. Pushes of the form
  {
-     container-identifier = "<identifier>"
-     domain = "<domain identifier>"
+     "container-identifier": "<identifier>",
+     "domain": "<domain identifier>"
  }
  with a topic of "<your application identifier>.pushkit.fileprovider" will be
  translated into a call to signalEnumeratorForContainerItemIdentifier:completionHandler:.
@@ -267,14 +267,17 @@
 
  The global progress exposes the two following data:
  - Number of items with an ongoing matching kind operation along with the grand total;
- - Number of bytes already transfered along with the total amount of bytes to transfer.
+ - Number of bytes already transferred along with the total amount of bytes to transfer.
 
- The grand total will only be reset to 0 when there are no operations left. If new operations of the matching kind arrive while
- the global progress is already ongoing, they will just be summed to the existing global progress.
+ `totalUnitCount` will only be reset when there are no operations left. If new operations of the matching
+ kind arrive while the global progress is already ongoing, they will just be summed to the existing global
+ progress.
 
- By default, when no matching kind operations are active, the progress has its values set to 1 and its state set to finished.
+ By default, when no matching kind operations are active, the progress has its values set to 1 and its state set
+ to finished.
 
- The progress will be updated on the main queue. It is to be retained by the caller and to be observed through KVO.
+ The progress will be updated on the main queue. It is to be retained by the caller and to be observed through
+ KVO.
 
  The two only supported values for kind are:
  - NSProgressFileOperationKindUploading
Clone this wiki locally