码迷,mamicode.com
首页 > 其他好文 > 详细

Navigation学习笔记

时间:2016-01-09 23:05:32      阅读:390      评论:0      收藏:0      [点我收藏+]

标签:

***************************** 使用storyboard导航*********************************

storyboard方式相对简单。

技术分享

在弹出来的选择框里选择跳转方式:

技术分享

连接完成:

技术分享

 

 

*************************** 使用presentViewController导航 **************************

 

 1 // 建立一个继承自UIviewController的类secondViewController后
 2 
 3 secondViewController *second = [self.storyboard instantiateViewControllerWithIdentifier:@"// 写second这个viewController的storyboard属性名称,在右边的编辑器里可以编辑"]
 4  
 5 presentViewController:(UIViewController *) animated:(BOOL) completion:^(void)completion
 6 // 显示viewController
 7 
 8 // 也可以建立带xib的类,然后用
 9 initWithNibName:(NSString *) bundle:(NSBundle *)
10 如:ThirdViewController *t = [[ThirdViewController alloc]initWithNibName:@"ThirdViewController" bundle:nil]
11 
12 // 然后再调用presentViewController方法

 

***************************** 使用NavigationController导航 *************************

To be continued.....

 

Navigation学习笔记

标签:

原文地址:http://www.cnblogs.com/rootandshaw/p/5117402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!