比较IOS开发中常用视图的四种切换方式
在iOS开发中,比较常用的切换视图的方式主要有以下几种:1. push、pop使用举例(ViewController假设为需要跳转的控制器):[self.navigationController pushViewController:ViewController animated:YES]; //入栈,跳转到指定控制器视图[self.navigationController popViewControllerAnimated:YES]; //弹栈,返回到前...