导航控制器UINavigationController控制一系列的UIViewController,他们组成一个层次结构,每一个ViewController都在这个层次结构中上下移动,组织方式是栈形式。
每个UIViewController都有相关联的UINavigationItem,后者处于活动状态时将位于UINavigationBar中,每个UINavigationItem都可能包含一个或多个UIBarButtonItem,让导航栏能包括其他操作项。
一般情况下,导航控制器结构包含四个对象:
一个UINavigationController;
一个UINavigationBar;
一个UIViewController;
一个UINavigationItem(放在UINavigationBar中)
下面来创建一个导航控制器:
下面是工程目录截图:

首先建立一个Empty project,在AppDelegate.h中声明并在m文件中实现:
@property (strong,nonatomic)
UINavigationController *navController;
然后建一个RootViewController继承UITableViewController作为导航控制器的根视图
然后建立MovieViewController来作为RootViewController条目的子视图
在RootViewController里面添加方法:
- (void)viewDidLoad
{
[superviewDidLoad];
self.title = @"类别";
NSMutableArray *array = [[NSMutableArrayalloc]init];
MovieController *movieController = [[MovieControlleralloc]initWithStyle:UITableViewStylePlain];
movieController.title = @"电影";
[array addObject:movieController];
self.controllerList = array;
}
由于继承了UITableViewController,所以要实现必要的方法,这里列出关键代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
staticNSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCellalloc] initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
NSUInteger row = [indexPath row];
UITableViewController *controller = [self.controllerListobjectAtIndex:row];
cell.textLabel.text = controller.title;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
这是单击条目后进入子视图的方法:
#pragma mark - Table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger row = [indexPath row];
UITableViewController *detailController = [self.controllerListobjectAtIndex:row];
//进入下一个视图的操作
[self.navigationControllerpushViewController:detailController animated:YES];
[detailController release];
}
这样基本实现了导航控制的目的,导航栏上方的返回按钮是根据前一个视图的标题自动生成的。
另外还有一些操作是为导航栏添加左右按钮,
self.navigationItem.rightBarButtonItem = [UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItem addTarget:self : action:@selector(change)];
定义顶部左右按钮的方式有如下几种:
initWithBarButtonSystem:target:action: :创建一个标准按钮
initWithCustomView: 自定义按钮(view)
initWithImage:style:target:action 创建一个带图片的按钮
initWithTitle:style:target:action 创建一个带标题的按钮




效果图如上,源码我就没贴出来了,里面还包括了一些表格视图的操作功能,有需要的同学可以联系我,欢迎关注我的新浪微博:唐韧_Ryan
分享到:
相关推荐
在iOS开发中,UINavigationController是苹果提供的一种容器类视图控制器,它负责管理一个堆栈式的视图控制器序列。在iOS 7之前,用户通常通过导航栏上的返回按钮或者手势来实现页面间的切换。然而,随着iOS 7的发布...
导航控制器(UINavigationController)用来管理一系列显示层次型信息的场景。一般而言,逐步显示更详细的信息。 导航控制器 -- 用户在场景之间切换时,导航控制器依次将视图控制器压入(push)堆栈中,且当前场景的...
在iOS应用开发中,页面间的跳转是用户体验的重要组成部分,而`UINavigationController`是苹果提供的一个强大工具,用于管理屏幕间的导航。这个类提供了一种优雅的方式来组织和控制多个`UIViewController`实例,允许...
在iOS开发中,UINavigationController是苹果提供的一种强大的界面管理组件,尤其在iOS 7及其后续版本中得到了广泛的应用。这个组件允许我们通过堆叠视图控制器来构建具有导航功能的用户界面,使得用户可以通过“前进...
在iOS开发中,自定义导航控制器UINavigationController是一个常见的需求,以满足特定的界面设计和交互体验。本篇文章将深入探讨如何实现自定义导航控制器,并基于提供的代码片段进行解析。 首先,自定义导航控制器...
在iOS应用开发中,`UINavigationController`和`UITabBarController`是两个核心的控制器,用于构建常见的用户界面结构。它们分别是导航栈和标签页切换器,但有时开发者可能需要根据应用的需求进行定制,以实现独特的...
很多时候我们创建一个基于UITabBarController的application以后还希望能够在每个tab view都可以实现导航控制,即添加一个UINavigationController来实现tabview内部的view之间的切换,这即是本文所要介绍的。
IOS 导航 UINavigationController,说明了setBackBarButtonItem,setRightBarButtonItem,setLeftBarButtonItem,setTitleView
这篇学习笔记将深入探讨如何在iOS应用中实现自定义导航栏以及如何有效利用表格展示数据。 首先,自定义导航栏允许开发者根据应用程序的品牌风格或功能需求进行个性化设计。在iOS中,我们通常使用...
通过这个Demo,开发者可以学习到如何在实际项目中构建具有导航功能的应用,同时掌握`UINavigationController`与`UINavigationBar`的配合使用,以及如何优雅地处理页面间的导航。在深入研究这个Demo时,建议同时查阅...
效果参考 App:腾讯新闻、百度音乐等等 GitHub:https://github.com/LeoiOS/LCNavigationController
在iOS应用开发中,`UINavigationController`是苹果提供的一个核心组件,用于管理多个`UIViewController`的堆栈,实现页面间的导航。本篇文章将深入探讨如何对`UINavigationController`进行自定义,特别是关于...
【iOS学习总结】 在iOS开发领域,这是一份个人学习经验的总结,涵盖了从入门到进阶的关键知识点。iOS开发主要使用Swift编程语言,这是一种由Apple公司推出,旨在提升开发效率,同时保持代码简洁和安全的语言。Swift...
在Android开发中,为了提供与iOS类似的用户体验,开发者有时会希望实现类似iOS的UINavigationController的滑动手势来完成Activity的返回操作。标题提到的"SwipetoFinishActivity"就是一个这样的解决方案,它允许用户...
相关知识共享: leftBarButtonItem与backBarButtonItem的区别 - http://blog.csdn.net/moon_prince2013/article/details/49079251 ViewController中[self setTtile]与[self.navigationItem setTitle]的... ... ...
在iOS应用开发中,构建一个层次清晰、交互流畅的用户界面是至关重要的。这个话题将深入探讨如何使用纯代码方式来搭建一个包含三级结构的UI,即`UITabBarController` + `UINavigationController` + `UIViewController...
我们写iOS项目的时候,基本都是一个UINavigationController套一个UITabBarController的形式,就是上面一个导航栏,下面几个按钮的工具条的形式。我写了几个应用,发现如果每次都重新写的话完全就是浪费精力和时间,...
UInavigationController笔记
在iOS应用开发中,`UITabBarController` 和 `UINavigationController` 是两种常用且重要的控制器,它们各自负责不同的界面展示逻辑。`UITabBarController` 通常用于实现底部标签栏切换不同功能模块,而 `...