UIApplication類提供了2方法用來讓 App 在后臺執行,除了蘋果允許的音樂類等 App 允許在后臺長時間執行之外 , 其他的 App在 iOS7之前默認是10分鐘, iOS7之后默認是3分鐘;
- (UIBackgroundTaskIdentifier)beginBackgroundTask
WithExpirationHandler:(void(^ __nullable)(void))handler
NS_AVAILABLE_IOS(4_0) NS_REQUIRES_SUPER;
- (UIBackgroundTaskIdentifier)beginBackgroundTask
WithName:(nullable NSString *)taskName
expirationHandler:(void(^ __nullable)(void))handler
NS_AVAILABLE_IOS(7_0)
NS_REQUIRES_SUPER;
- (void)endBackgroundTask:(UIBackgroundTaskIdentifier)identifier
NS_AVAILABLE_IOS(4_0) NS_REQUIRES_SUPER;