我在情节提要中有一个名为 A 的 UITableViewController,现在我试图在我的主视图控制器上滑入 A。
_vc = [self.storyboard instantiateViewControllerWithIdentifier:@"A"];
在我的showMenu
方法中
[self addChildViewController:self.vc];
[self.view addSubview:self.vc.view];
[self.vc didMoveToParentViewController:self];
[UIView animateWithDuration:0.7 animations:^{
[self.view setFrame:CGRectMake(160, 0, self.view.frame.size.width, self.view.frame.size.height)];
}];
我可以在视图控制器 A 中滑动。但是,无论我尝试对 AI 做什么,都没有响应。如何让 A 响应触摸事件?