在我使用ARC和故事板的项目中,我使用以下代码打开一个viewcontroller:
SecondViewController *second = [self.storyboard instantiateViewControllerWithIdentifier:@"secondviewcontroller"];
[self presentViewController:second animated:YES completion:nil];
我将其关闭:
[self dismissViewControllerAnimated:YES completion:nil];
有没有办法不释放第二个并重新打开它的最后状态?
thansk
答案 0 :(得分:1)
让second
成为您班级中的强大属性,并在决定实例化之前检查它是否为零。