嗨,我尝试从子视图返回主视图,但是当我执行按钮操作时,出现此错误

performSelector:withObject:withObject:]: message sent to deallocated instance 0x16dd0700


这是我的代码

UIViewController *subController = [self.storyboard instantiateViewControllerWithIdentifier:@"nextView"];

 subController.view.frame = CGRectMake(0, 0, 568, 320);
    ((thrownAtMeItem*) subController).delegate = self;


    [self.view addSubview:subController.view];


在下一个视图中,我只有一个按钮,并且在操作中我正在编写nslog。

最佳答案

只要需要,请对subController保持强烈的引用。 (只要显示其视图)

10-05 20:26