如果通過AFHTTPOperation和OperationQueue進行更新,我有一個UIViewController可以下載多個文件。如果由於某種原因,用戶按下電源按鈕,並且應用程序在下載這些文件時進入後臺,我想要退回或放到前一個屏幕。在執行此操作之前,我正在取消下載隊列中的所有當前操作。當應用程序進入後臺時執行Segue
下載的UIViewController
- (void)didEnterBackground:(NSNotification *)notification {
if ([_downloadsQueue operationCount] > 0) {
[_downloadsQueue cancelAllOperations];
}
[self performSegueWithIdentifier:@"unwindToLogin" sender:self];
}
登錄的UIViewController
- (IBAction)unwindToLogin:(UIStoryboardSegue *)segue {
_passwordTextField.text = @"";
_userNameTextField.text = @"";
_files = [[NSMutableArray alloc] init];
}
目前,在重新進入到應用中我看到了下載屏幕上短暫之前我看到的登錄屏幕。無論如何要阻止這種情況發生?
如果您關閉該segue的動畫,會發生這種情況嗎? –
我不知道如何關閉動畫放鬆繼續。我會在上面發佈我的segue的代碼。 –