- 浏览: 2203512 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (1240)
- mac/IOS (287)
- flutter (1)
- J2EE (115)
- android基础知识 (582)
- android中级知识 (55)
- android组件(Widget)开发 (18)
- android 错误 (21)
- javascript (18)
- linux (70)
- 树莓派 (18)
- gwt/gxt (1)
- 工具(IDE)/包(jar) (18)
- web前端 (17)
- java 算法 (8)
- 其它 (5)
- chrome (7)
- 数据库 (8)
- 经济/金融 (0)
- english (2)
- HTML5 (7)
- 网络安全 (14)
- 设计欣赏/设计窗 (8)
- 汇编/C (8)
- 工具类 (4)
- 游戏 (5)
- 开发频道 (5)
- Android OpenGL (1)
- 科学 (4)
- 运维 (0)
- 好东西 (6)
- 美食 (1)
最新评论
-
liangzai_cool:
请教一下,文中,shell、C、Python三种方式控制led ...
树莓派 - MAX7219 -
jiazimo:
...
Kafka源码分析-序列5 -Producer -RecordAccumulator队列分析 -
hp321:
Windows该命令是不是需要安装什么软件才可以?我试过不行( ...
ImageIO读jpg的时候出现javax.imageio.IIOException: Unsupported Image Type -
hp321:
Chenzh_758 写道其实直接用一下代码就可以解决了:JP ...
ImageIO读jpg的时候出现javax.imageio.IIOException: Unsupported Image Type -
huanghonhpeng:
大哥你真强什么都会,研究研究。。。。小弟在这里学到了很多知识。 ...
android 浏览器
iPhone开发之NavigationController
- 博客分类:
- mac/IOS
在上图中红线框住的就是导航栏,应用也很广泛,系统自带应用也在用它。如何从零创建一个导航栏应用。
新建项目,可以选择“Master-Detail Application”,但是默认就创建了TableView视图,这个我们不需要,所以还是从空项目创建,选择“Empty Appliction”,项目命名为“NavigationDemo”
新建一个视图,“New file..” -> “UIViewController subclass”,命名为RootViewController,并勾选“With XIB for user interface”
修改AppDelegate.h和AppDelegate.m源代码
// AppDelegate.h #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> { UINavigationController *navController; } @property (strong, nonatomic) UIWindow *window; @end
// AppDelegate.m #import "AppDelegate.h" #import "RootViewController.h" @implementation AppDelegate @synthesize window = _window; - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; navController = [[UINavigationController alloc] init]; RootViewController *rootViewController = [[RootViewController alloc] init]; // 这时navController会增加rootViewController的引用计数 [navController pushViewController:rootViewController animated:NO]; [self.window addSubview:navController.view]; [self.window makeKeyAndVisible]; // 所以这里可以release先前的引用,UINavigationController它会掌控rootViewController [rootViewController release]; return YES; } ... - (void)dealloc { [navController release]; [self.window release]; [super dealloc]; } @end
这时候运行只是一个空的导航栏程序,咋都没有,接下来我们添加第二个视图并设置标题文字
新建一个视图,“New file..” -> “UIViewController subclass”,命名为SecondViewController,并勾选“With XIB for user interface”
在RootViewController.xib中添加一个按钮并绑定到(IBAction)displaySecondView
// AppDelegate.m #import "AppDelegate.h" #import "RootViewController.h" @implementation AppDelegate @synthesize window = _window; - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; navController = [[UINavigationController alloc] init]; RootViewController *rootViewController = [[RootViewController alloc] init]; // 修改 rootViewController 标题 rootViewController.title = @"Root View"; // Override point for customization after application launch. [navController pushViewController:rootViewController animated:NO]; [self.window addSubview:navController.view]; [self.window makeKeyAndVisible]; [rootViewController release]; return YES; }
// RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController : UIViewController - (IBAction)displaySecondView:(id)sender; @end
// RootViewController.m #import "RootViewController.h" #import "SecondViewController.h" @implementation RootViewController ... - (void)displaySecondView:(id)sender { SecondViewController *secondViewController = [[SecondViewController alloc] init]; // 向视图询问它的导航控制器,因为在AppDelegate.m中我们已经在navController中rootViewController, // 所以这里我们询问rootViewController的导航控制器就会返回先前navController指针,如果没有就返回空 [self.navigationController pushViewController:secondViewController animated:YES]; // 设置 secondViewController 标题 secondViewController.title = @"Second View"; [secondViewController release]; } @end
运行程序,当点击按钮,动画切换到secondViewController,导航栏自动显示返回rootViewController按钮。
我们看第一张截图,左右各有一个按钮,那么这两个按钮是怎么创建的,UINavigationController上面的区域叫UINavigationItem,UINavigationItem中可以添加UIBarButtonItem,创建界面最好的时机就是在- (void)viewDidLoad方法中.
// RootViewController.m #import "RootViewController.h" #import "SecondViewController.h" @implementation RootViewController ... - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. UIBarButtonItem *testButton = [[UIBarButtonItem alloc] initWithTitle:@"test" style:UIBarButtonItemStyleBordered target:self action:@selector(testClicked:)]; self.navigationItem.leftBarButtonItem = testButton; [testButton release]; } ...
这时候点击导航栏上的“test”按钮没有任何行为,因为我们还没有创建action testClicked方法
// RootViewController.m #import "RootViewController.h" #import "SecondViewController.h" @implementation RootViewController ... - (void)testClicked:(id)sender { NSLog(@"test button clicked."); } ...
有时候我们可能想创建下面的按钮,右边的按钮上面有个小十字,这些系统小图标是iPhone内部预设的,下面来看看这些按钮.
// RootViewController.m #import "RootViewController.h" #import "SecondViewController.h" @implementation RootViewController ... - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. UIBarButtonItem *testButton = [[UIBarButtonItem alloc] initWithTitle:@"test" style:UIBarButtonItemStyleBordered target:self action:@selector(testClicked:)]; self.navigationItem.leftBarButtonItem = testButton; UIBarButtonItem *addButton =[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(addClicked:)]; self.navigationItem.rightBarButtonItem = addButton; [testButton release]; [addButton release]; } ... - (void)addClicked:(id)sender { NSLog(@"add button clicked."); } @end
创建这些按钮很方便,只要打入UIBarButtonSystemItem,Xcode会自动补全,后面列出的都是系统预设按钮。
还有一些按钮按钮和行为,系统已经帮我们定义好了,Edit和Done按钮行为,我们只要实现它就好了
// RootViewController.m #import "RootViewController.h" #import "SecondViewController.h" @implementation RootViewController ... - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. UIBarButtonItem *testButton = [[UIBarButtonItem alloc] initWithTitle:@"test" style:UIBarButtonItemStyleBordered target:self action:@selector(testClicked:)]; self.navigationItem.leftBarButtonItem = testButton; self.navigationItem.rightBarButtonItem = self.editButtonItem; [testButton release]; } ... - (void)setEditing:(BOOL)editing animated:(BOOL)animated { [super setEditing:editing animated:animated]; if (editing) { NSLog(@"editing"); } else { NSLog(@"done"); } } @end
有时候我们会在导航栏上看到这样的按钮排列,这个又是怎么实现的
// RootViewController.m #import "RootViewController.h" #import "SecondViewController.h" @implementation RootViewController ... - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. UIBarButtonItem *testButton = [[UIBarButtonItem alloc] initWithTitle:@"test" style:UIBarButtonItemStyleBordered target:self action:@selector(testClicked:)]; self.navigationItem.leftBarButtonItem = testButton; self.navigationItem.rightBarButtonItem = self.editButtonItem; NSArray *segmentButtons = [NSArray arrayWithObjects:@"升序", @"降序", nil]; UISegmentedControl *segmentedController = [[UISegmentedControl alloc] initWithItems:segmentButtons]; segmentedController.segmentedControlStyle = UISegmentedControlStyleBar; [segmentedController addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged]; self.navigationItem.titleView = segmentedController; [testButton release]; [segmentedController release]; } ... - (void)segmentAction:(id)sender { switch ([sender selectedSegmentIndex]) { case 0: NSLog(@"button 0 clicked"); break; case 1: NSLog(@"button 1 clicked"); break; default: break; } } ... @end
返回按钮的定制,如果导航栏的标题很长的话,返回按钮的长度也会变长,而我们并不希望这样的事发生,我们可以设置返回按钮的标题来达到目的,关键是我们要返回哪个视图控制器,就在哪个视图控制器类里修改。
// RootViewController.m #import "RootViewController.h" #import "SecondViewController.h" @implementation RootViewController ... - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. ... UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"Root" style:UIBarButtonItemStylePlain target:nil action:nil]; self.navigationItem.backBarButtonItem = backButton; [backButton release]; } ... @end
发表评论
-
带你深入理解 FLUTTER 中的字体“冷”知识
2020-08-10 23:40 634本篇将带你深入理解 Flutter 开发过程中关于字体和文 ... -
Flutter -自定义日历组件
2020-03-01 17:56 1110颜色文件和屏幕适配的文件 可以自己给定 import ... -
Dart高级(一)——泛型与Json To Bean
2020-02-23 19:13 1004从 Flutter 发布到现在, 越来越多人开始尝试使用 Da ... -
flutter loading、Progress进度条
2020-02-21 17:03 1179Flutter Progress 1 条形无固定值进度条 ... -
Flutter使用Https加载图片
2020-02-21 01:39 1019Flutter使用Https加载图片 使用http加载图片出 ... -
flutter shared_preferences 异步变同步
2020-02-21 00:55 847前言 引用 在开发原生iOS或Native应用时,一般有判断上 ... -
Flutter TextField边框颜色
2020-02-19 21:31 936监听要销毁 myController.dispose(); T ... -
flutter Future的正确用法
2020-02-18 21:55 807在flutter中经常会用到异步任务,dart中异步任务异步处 ... -
记一次Flutter简单粗暴处理HTTPS证书检验方法
2020-02-18 14:13 978最近在做Flutter项目到了遇到一个无解的事情,当使用Ima ... -
flutter 获取屏幕宽度高度 通知栏高度等屏幕信息
2019-07-27 08:39 1342##MediaQuery MediaQuery.of(con ... -
Mac上制作Centos7系统U盘安装盘
2019-07-23 11:25 650Centos7 下载地址: https://www.cento ... -
关于flutter RefreshIndicator扩展listview下拉刷新的问题
2019-07-10 19:40 1139当条目过少时listview某些嵌套情况下可能不会滚动(条目 ... -
flutter listview 改变状态的时候一直无限添加
2019-07-10 16:01 788setstate的时候会一直无限的调用listview.bui ... -
Flutter Android端启动白屏问题的解决
2019-07-09 00:51 1521问题描述 Flutter 应用在 Android 端上启动时 ... -
Flutter中SnackBar使用
2019-07-08 23:43 779底部弹出,然后在指定时间后消失。 注意: build(Bui ... -
Flutter 之点击空白区域收起键盘
2019-07-08 18:43 1790点击空白处取消TextField焦点这个需求是非常简单的,在学 ... -
Flutter 弹窗 Dialog ,AlertDialog,IOS风格
2019-07-08 18:04 1380import 'package:flutter/mate ... -
flutter ---TextField 之 输入类型、长度限制
2019-07-08 14:30 2336TextField想要实现输入类型、长度限制需要先引入impo ... -
【flutter 溢出BUG】键盘上显示bottom overflowed by 104 PIXELS
2019-07-08 11:13 1565一开始直接使用Scaffold布局,body:new Colu ... -
解决Flutter项目卡在Initializing gradle...界面的问题
2019-07-07 12:53 879Flutter最近很火,我抽出了一点时间对Flutter进行了 ...
相关推荐
标题 "iPhone开发之TabBarController+NavigationController" 指的是将这两个控制器一起使用,以构建一个多页面、有导航功能的应用。在Mac10.7环境下进行开发,意味着我们使用的可能是Xcode 4.x系列,对应的iOS SDK...
iphone开发基础UITabBar和UINavigation搭建简单应用,适合初学者,学习tabbar和navigation,这里练习两者组合搭建一个简单的常见应用例子, 其实普通应用也就是tabbar作为根视图,每个tab又是一个navigation的根...
在iOS开发中,多视图切换是构建用户界面的关键部分,尤其对于iPhone应用程序而言,它提供了丰富的用户体验。本文将深入探讨如何在iPhone应用中实现多视图切换,并提供相关的代码示例。 首先,理解基本的视图(View...
### iOS软件开发基础:深入解析iPhone与iPad的企业应用及游戏开发 #### 一、引言 随着移动设备的普及,iOS平台的应用开发成为了许多企业和个人关注的焦点。无论是企业级应用还是游戏开发,掌握iOS开发的基本原理和...
描述中的“把它当成一个NAVIGATIONCONTROLLER来用”可能是在谈论iOS应用开发中的Navigation Controller(导航控制器)。在iOS编程中,UINavigationController是一个重要的UI组件,它负责管理一个堆栈式的视图控制器...
### 如何学习iPhone开发过程中的关键技术点 #### 一、随机数的使用 在iOS开发中,随机数的使用非常广泛,例如游戏开发中的随机事件触发、数据模拟测试等场景。常用的随机数生成方法有两种: 1. **使用`srandom()`...
在iOS应用开发中,视图切换是用户界面交互的核心部分,尤其对于iPhone应用而言,顺畅的视图切换体验直接影响到用户的使用感受。本教程将深入探讨如何在iPhone应用中实现视图之间的平滑切换,主要关注`Push`操作,这...
此“iPhone之简易导航栏”项目旨在教你如何在iPhone应用中创建和自定义导航栏,以提供更优秀的用户体验。我们将探讨以下几个关键知识点: 1. **UINavigationController**:它是苹果iOS SDK中的一个控制器类,负责...
为了快速入门,推荐阅读一些基础教程和书籍,如《iPhone 3开发基础教程》、《Objective-C 2.0编程设计》、《苹果开发之Cocoa编程(第三版)》等。通过实践书中的例子,能更好地掌握编程技巧。 对于从其他平台转向...
在iOS开发中,创建一个带有多个视图的iPhone应用程序是一个...随着对iOS开发的深入学习,你还可以探索更复杂的设计模式,如使用TabBarController或NavigationController来管理视图的层级结构,提供更丰富的用户体验。
描述中的"iphone控件嵌套开发table中嵌套navigation导航控件"进一步指出了在Table View(表格视图)中嵌套Navigation Controller的具体应用场景。 首先,`TabBar`是iOS的底部导航栏,它允许用户在多个主要功能之间...
《深入探索iPhone开发:TableView与NavigationTableView实战》 在iOS应用开发中,UITableView是一个至关重要的组件,它用于展示数据集合并允许用户进行交互。而Navigation Controller则是构建层级导航界面的关键,...
导航条之NavigationController Transition 导航条之Title Swipe View 导航条之Title View on NavigationBar 地图类--自定义地图标注 地图(Map)之SJOPaperboy 地图类--Custom Annotation 地图类--DirectionsKit ...
在iOS开发中,数据在不同View之间传递是一个常见的任务,特别是在使用导航控制器(UINavigationController)或者模态视图(UIViewController的present方法)时。这里我们将深入探讨如何在iPhone的两个视图之间,从...
- 当用户点击9宫格中的一个单元格时,使用NavigationController的pushViewController:animated:方法将新的ViewController推入栈中,这样可以实现平滑的页面过渡效果。 6. **注意的细节** - 确保在ViewController...
在iOS开发中,状态栏(StatusBar)是位于应用程序顶部,显示时间、网络连接状态、电量等信息的小区域。默认情况下,iOS系统会自动处理状态栏的样式和内容,但有时开发者可能需要对其进行自定义,以适应特定应用的...
iOS是由苹果公司开发的移动操作系统,主要用于iPhone、iPad和iPod Touch等设备上。它基于Darwin内核构建,并采用了Objective-C、Swift等多种编程语言进行应用程序的开发。 #### 1.2 iOS应用开发流程 - **环境搭建**...
### iPhone中部分控件的应用及关键技术点解析 ...以上是关于iPhone应用开发中部分控件的应用及相关技术点的详细介绍,涵盖了从项目创建到界面设计、逻辑编写等多方面的内容。希望对学习者有所帮助。
【iOS开发教程】\n\niOS开发是Apple公司为其移动设备如iPhone、iPad等构建应用程序的技术。本教程将深入探讨iOS开发的关键概念和组件。\n\n**第一章:iOS系统架构**\n\niOS系统架构由多个层次组成,自底向上分别为...