Objective-C弹出模态学习之纯代码跳转到xib界面以及storyboard界面

       现在在iOS开发中,有三种开发UI的方式,纯代码xibstoryboard

       1,跳转到xib

       假设有一个按钮,这个按钮就是实现跳转的,那么在这个按钮的点击事件中,代码可以这样写。

SCViewController *sc1= [[SCViewController alloc]initWithNibName:@”SCViewController” bundle:[NSBundle mainBundle]]; 
[self.navigationController pushViewController:sc1 animated:YES]; 

       2,跳转到storyboard

       如上,代码可以这样写

  UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
  SCTabBarController *vc = [storyboard instantiateInitialViewController];
  [self presentViewController:vc animated:YES completion:nil];

你可能感兴趣的:(#,Objective-C弹出模态,iOS学习--从入门到实战)