我正在使用以下代码展示一个新的 ViewController
UIStoryboard *storyboard = self.storyboard;
finishViewController *finished = [storyboard instantiateViewControllerWithIdentifier:@"finishViewController"];
[self presentViewController:finished animated:YES completion:nil];
当完成视图控制器时,前一个视图(上面代码打开的那个)仍在后台处理。有什么办法可以杀死它吗?