-
Couldn't load subscription status.
- Fork 549
BackgroundTasks iOS xcode16.0 b2
Rolf Bjarne Kvinge edited this page Jun 26, 2024
·
2 revisions
#BackgroundTasks.framework
diff -ruN /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTask.h /Applications/Xcode_16.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTask.h
--- /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTask.h 2024-05-30 04:42:29
+++ /Applications/Xcode_16.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTask.h 2024-06-15 12:19:27
@@ -121,23 +121,6 @@
@end
/*!
- @abstract A task initiated by the user that continues in the background
- */
-BG_EXTERN API_AVAILABLE(ios(18.0), tvos(25.0)) API_UNAVAILABLE(macos, watchos, tvos)
-/// A task meant to perform processing on behalf of a user initiated request
-///
-/// Continued processing tasks will present UI while in progress to provide awareness to the user
-@interface BGContinuedProcessingTask : BGTask
-
-@property (copy, readonly) NSString *title;
-
-@property (copy, readonly) NSString *reason;
-
-- (void)updateProgress:(NSProgress *)progress;
-
-@end
-
-/*!
@abstract A background task used to update your app's contents in the background.
*/
BG_EXTERN API_AVAILABLE(ios(13.0), tvos(13.0)) API_UNAVAILABLE(macos, watchos)
diff -ruN /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTaskRequest.h /Applications/Xcode_16.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTaskRequest.h
--- /Applications/Xcode_16.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTaskRequest.h 2024-05-30 04:33:12
+++ /Applications/Xcode_16.0.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/BackgroundTasks.framework/Headers/BGTaskRequest.h 2024-06-15 10:54:44
@@ -111,19 +111,6 @@
@end
-BG_EXTERN API_AVAILABLE(ios(18.0), tvos(25.0)) API_UNAVAILABLE(macos, watchos, tvos)
-@interface BGContinuedProcessingTaskRequest : BGTaskRequest
-
-- (instancetype)initWithIdentifier:(NSString *)identifier;
-
-/// String indicating user-visible title for the continued processing
-@property (copy) NSString *title;
-
-/// String indicating user-visible content for describing the continued processing
-@property (copy) NSString *reason;
-
-@end
-
NS_ASSUME_NONNULL_END