ios开发(十四)view之间的切换

第一种办法: 

显示child用 presentModalViewcontroller: animated:

返回parent用 dismissModalViewControllerAnimated:

第二种办法:

navigationController,用一个stack在管理各个view,比较推荐使用这个办法,可以让程序有着很好的结构。

pushViewController: animated:

[self.navigationController popViewControllerAnimated:YES];

TODO

你可能感兴趣的:(ios开发(十四)view之间的切换)