UINavigationController:一个以栈的形式管理多视图的容器,负责子控制器之间的跳转。由于以栈的方式管理视图,各个视图的切换就是压栈和出栈操作,所以出栈后的视图会立即销毁。
介绍:
[c1.navigationController pushViewController:c2 animated:YES];
<7>
纯代码创建多视图的步骤:
1、首先将项目中的storyboard删除,并将项目栏General中Main interface的设置取消。
2、在应用程序代理类中创建window并设置它的frame,一般将window的大小设置为单例对象屏幕的大小,然后给window设置根控制器。
3、创建UINavigationController控制器,它是一个容器,用- (instancetype)initWithRootViewController:(UIViewController *)rootViewController方法初始化,传入一个UIViewController实例作为根控制器,这个根控制器永远处于栈底(如果栈中只有一个对象,那么根控制器也处于栈顶),将某个UIViewController压入栈时,控制器的视图会从窗口右侧滑入;出栈时,栈顶的控制器会被移除,其下的控制器的视图会从窗口左侧滑入
3、如果还要创建其他多个控制器,创建后,必须要获取当前栈中的根控制器,根控制器用- (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animate方法将这些控制器依次推入栈中。
4、针对每一个控制器,在它们的类中分别设置它们的导航栏标题和导航条navigationItem中的属性,例如添加按钮、设置标题视图等,添加按钮时,给按钮初始化时可以设置类型,并添加事件,在事件中用方法:- (NSArray *)popToRootViewControllerAnimated:(BOOL)animated推出栈中它的前一个控制器。
纯代码创建举例如下:
显示结果为:
文件截图为:
取消general中的Main interface设置
代码如下:
应用程序代理类中创建window和根控制器
#import "AppDelegate.h"
#import "ViewController.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//创建window
self.window = [[UIWindow alloc]init]; //设置window的大小
CGSize screenSize = [[UIScreen mainScreen]bounds].size;
self.window.frame = CGRectMake(, , screenSize.width, screenSize.height); //为window设置根控制器
ViewController *VC = [[ViewController alloc]init];
UINavigationController *naVC = [[UINavigationController alloc]initWithRootViewController:VC]; self.window.rootViewController = naVC; //接收用户输入并显示
[self.window makeKeyAndVisible]; return YES;
} - (void)applicationWillResignActive:(UIApplication *)application {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
} - (void)applicationDidEnterBackground:(UIApplication *)application {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
} - (void)applicationWillEnterForeground:(UIApplication *)application {
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
} - (void)applicationDidBecomeActive:(UIApplication *)application {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
} - (void)applicationWillTerminate:(UIApplication *)application {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
} @end
在设置的根控制器类中设置导航栏属性,并将新的视图控制器推入栈中
#import "ViewController.h"
#import "secondViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad {
[super viewDidLoad];
[self.view setBackgroundColor:[UIColor yellowColor]]; //设置导航栏
//设置标题
self.navigationItem.title = @"First"; //设置返回按钮
self.navigationItem.backBarButtonItem.title = @"first"; //设置右边的按钮
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addClicked:)];
} -(void)addClicked:(UIBarButtonItem*)sender
{
secondViewController *secondVC = [[secondViewController alloc]init]; //将新的控制器压入导航控制器
[self.navigationController pushViewController:secondVC animated:YES];
} @end
在新的视图控制器类中设置导航栏属性,将当前控制器弹出栈中
#import "secondViewController.h" @interface secondViewController () @end @implementation secondViewController - (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor redColor]; //设置导航栏
//1、设置标题
self.navigationItem.title = @"Second"; //2.设置左边的按钮
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"Return" style:UIBarButtonItemStylePlain target:self action:@selector(backClicked:)];
} -(void)backClicked:(UIBarButtonItem*)sender
{
//将当前的控制器弹出导航控制器
[self.navigationController popToRootViewControllerAnimated:YES];
}
@end