-
Notifications
You must be signed in to change notification settings - Fork 561
Photos tvOS xcode26.5 b1
Alex Soto edited this page Apr 6, 2026
·
2 revisions
#Photos.framework https://github.com/dotnet/macios/pull/25101
diff -ruN /Applications/Xcode_26.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h /Applications/Xcode_26.5.0-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h
--- /Applications/Xcode_26.4.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h 2026-02-27 02:05:10
+++ /Applications/Xcode_26.5.0-beta.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h 2026-03-21 01:56:47
@@ -226,10 +226,15 @@
/// A job to retry processing.
///
- /// An retryable job has a ``PHAssetResourceUploadJob/state`` of `failed` and hasn't previously been retried.
+ /// A retryable job has a ``PHAssetResourceUploadJob/state`` of `failed` and hasn't previously been retried.
///
/// Call ``PHAssetResourceUploadJobChangeRequest/retryWithDestination:`` to retry the job.
PHAssetResourceUploadJobActionRetry = 2,
+
+ /// A job to process.
+ ///
+ /// A processable job has a ``PHAssetResourceUploadJob/state`` of `registered` or `pending`.
+ PHAssetResourceUploadJobActionProcess API_AVAILABLE(ios(26.5)) = 3,
} NS_SWIFT_NAME(PHAssetResourceUploadJob.Action) API_AVAILABLE(ios(26.1)) API_UNAVAILABLE(macos, macCatalyst, tvos, visionos);
API_AVAILABLE_END