多视图控制器切换1.容器的概念? 一个iOS的app很少只由一个ViewController组成,除非这个app极其简单。当app中有多个ViewController时,就需要对这些ViewController进行管理? 容器的概念:负责展示一个或者多个ViewController,并管理这些 Vi...
分类:
其他好文 时间:
2014-08-05 21:50:30
阅读次数:
224
#import "AppDelegate.h"#import "FisrtViewController.h"@interface AppDelegate () @end@implementation AppDelegate - (BOOL)applicat...
分类:
其他好文 时间:
2014-07-16 18:16:12
阅读次数:
156
1.Modal:打开:presentViewController关闭:dismissViewController2.Push:需搭配NavigationController使用,采用压栈和出栈的方式打开:pushViewController关闭:popViewController3.Segue:以上...
分类:
其他好文 时间:
2014-06-27 13:57:24
阅读次数:
161