您好我正在尝试从子视图返回到主视图,但是当我按下按钮操作时出现此错误
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。
答案 0 :(得分:1)
只要您需要,就可以对subController进行强有力的引用。 (只要显示其视图)