UAActionFetchResult
Objective-C
enum UAActionFetchResult : NSInteger {}
Swift
struct ActionFetchResult : OptionSet, @unchecked Sendable
Represents the result of performing a background fetch, or none if no fetch was performed.
-
The action did not result in any new data being fetched.
Declaration
Objective-C
UAActionFetchResultNoData = UIBackgroundFetchResultNoData
Swift
static var noData: ActionFetchResult { get }
-
The action resulted in new data being fetched.
Declaration
Objective-C
UAActionFetchResultNewData = UIBackgroundFetchResultNewData
-
The action failed.
Declaration
Objective-C
UAActionFetchResultFailed = UIBackgroundFetchResultFailed
Swift
static var failed: ActionFetchResult { get }