我想在V1和V2控制器之前添加SWRevealViewController
。我不知道如何启动reveal-controlle
。我为情节提要添加了屏幕截图,因此它易于理解。
最佳答案
首先在任何类中扩展您的vc3。而不是在vc3中应用情节提要标识符名称。
在vc2按钮中编写代码单击动作方法
vc3 *secondViewController =
[self.storyboard instantiateViewControllerWithIdentifier:@"storyboardidentifier name"];
[self presentViewController:second animated:YES completion:NULL];