ios中跳转界面

时间:2022-11-09 14:18:11

话不多说直接上代码

SecondViewController *second=[SecondViewController alloc];
second.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;
[self presentViewController:second animated:YES completion:^{
}];

首先定义一个ViewController作为即将跳转的界面,然后设置跳转动画,然后使用当前ViewController的presentViewController方法进行跳转。
返回上一个界面的代码。

    [self dismissViewControllerAnimated:YES completion:^{

}];

通过调用当前ViewController的dismissViewControllerAnimated方法来返回上一个页面。