iOS - ViewController基础

2019-01-18  本文已影响7人  小黑Unity_齐xc

类似于android的activity。

生命周期函数

切换ViewController

显示新的视图:

-(void) touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    VC1* vc = [[VC1 alloc]init]; //VC1为类名
    [self presentViewController:vc animated:true completion:nil];
}

隐藏当前视图

-(void) touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    [self dismissViewControllerAnimated:true completion:nil];
}
上一篇 下一篇

猜你喜欢

热点阅读