CS193p Lecture 6 - UINavigation, UITabBar
抽象类(Abstract):指的是这个类不能被实例化,只能被继承;
OC中没有关键词来标明某个类是抽象类,只能在注释中标注一下;
抽象类中的抽象方法,必须是public的,使方法称为public的方法是,将其声明放置到 .h 文件的interface中;
Multiple MVCs in an Application
如何添加多个MVC呢?
1. 在 object library 中找到 UIViewController,拖拽到 storyboard;
2. New - File,创建 UIViewController 的子类;
3. 在 identity inspector 中将storyboard中的 UIViewController 关联到新建的 UIViewController 的子类;
4. 添加完MVC后,你就可以在 view 中加些button、label,还有outlets、actions之类的;
如何将多个MVC展现给用户呢?
(下面这个解释有点抽象,结合后面的例子来理解吧)
you use a controller whose view is other MVCs.
有一个控制器,这个控制器的视图是其他MVC。
UINavigationController
组成:
左上角:返回按钮
上部:标题(title)
右上角的按钮:an NSArray of UIBarButtonItems
底部的按钮:an NSArray of UIBarButtonItems
rootViewController
设置根控制器
每次向 UINavigationController 中压入新MVC时,都是从storyboard中新建一个,在堆中新实例化一个;返回后,它就消失被释放;
所以这些MVC需要知道如何变为活动状态,准备出现在屏幕上,做要做但事情,完成之后,保存工作进度,然后离开。
如果某些数据需要继续使用,就需要对它进行保存。可以通过向将你压进来的那个MVC发送消息来实现,需要借助不可视结构化通信(blind structured communication)来实现。
压入操作(push)
segue
A segue is just when you're going to move or segue, from one MVC to another.
这里用到的称为:push segue
scene:表示一个控制器和一个对应视图的组合;
创建一个segue的方法:
从segue开始的地方按住control键,拖动至想要segue到的视图控制器上;
弹出操作(pop)
方法一:点击左上角返回按钮;
方法二:
- (void)popViewControllerAnimated:(BOOL)animated
[self.navigationController popViewControllerAnimated:YES];
如果你是一个视图控制器(view controller),且嵌套在一个导航控制器(navigation controller)中,那你就拥有一个属性:navigationController,指向当前所在的导航控制器;
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if (segue.identifier = "DoSomething") {
if ([segue.destinationViewController isKindOfClass:[DoSomethingVC class]]) {
DoSomethingVC *doVC = (DoSomethingVC *)segue.destinationViewController;
doVC.needInfo = ...;
}
}
}
两个重要属性:
1. segue.identifier:因为一个视图可能可以segue到不同的视图,所以要通过identifier来区分;
2. segue.destinationViewController:为了确保segue过去的视图是我们想要的视图类型;
doVC.needInfo就是segue到目的视图之前需要做的准备工作;
注意:
当 prepareForSegue: sender: 被调用时,目标MVC的输出口(outlet)并没有设置好,也就是说,它是位于awakeFromNib和viewDidLoad之间被调用的;
Demo
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
if ([segue.identifier isEqualToString:@"Statistic Text"]) {
if ([segue.destinationViewController isKindOfClass:[TextStatisticsViewController class]]) {
TextStatisticsViewController *tsVC = (TextStatisticsViewController *)segue.destinationViewController;
tsVC.textToAnalyse = self.body.textStorage;
}
}
}
- (void)setTextToAnalyse:(NSAttributedString *)textToAnalyse{
_textToAnalyse = textToAnalyse;
[self updateUI];
} - (void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
[self updateUI];
} - (void)updateUI{
self.colorLabel.text = [NSString stringWithFormat:@"%lu colored characters",
[[self characterWithAttribute:NSForegroundColorAttributeName] length]];
self.outlineLabel.text = [NSString stringWithFormat:@"%lu outlined characters",
[[self characterWithAttribute:NSStrokeWidthAttributeName] length]];
} - (NSAttributedString *)characterWithAttribute:(NSString *)attributeName{
NSMutableAttributedString *character = [[NSMutableAttributedString alloc] init]; int index = ; while (index < [self.textToAnalyse length]) {
NSRange range;
id value = [self.textToAnalyse attribute:attributeName atIndex:index effectiveRange:&range];
if (value) {
[character appendAttributedString:[self.textToAnalyse attributedSubstringFromRange:range]];
index = (int)(range.location + range.length);
} else {
index ++;
}
} return character;
}
分析下这个Demo,虽然比较简单,但是包含对设计模式是很通用的,熟悉之:
UITabBarController
CS193p Lecture 6 - UINavigation, UITabBar的更多相关文章
- CS193p Lecture 11 - UITableView, iPad
UITableView 的 dataSource 和 delegate dataSource 是一种协议,由 UITableView 实现,将 Model 的数据给到 UITableView: del ...
- CS193p Lecture 10 - Multithreating, UIScrollView
Multithreating(多线程) 网络请求例子: NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithStrin ...
- CS193p Lecture 9 - Animation, Autolayout
Animation(动画) Demo Dropit续 Autolayout(自动布局) 三种添加自动布局的方法: 使用蓝色辅助虚线,右键选择建议约束(Reset to Suggested Constr ...
- CS193p Lecture 8 - Protocols, Blocks and Animation
一.协议(Protocols) 1. 声明协议 @protocol Foo <Xyzzy, NSObject> // ... @optinal // @required //... @en ...
- CS193p Lecture 7 - Views, Gestures
Views 如何绘制自定义图像 Gestures 如何处理用户手势操作 Views 1.它是基本的构造块,代表屏幕上一块矩形区域,定义了一个坐标空间,在此空间中可以绘制,可以添加触控事件: 2.它是分 ...
- CS193p Lecture 5 - View Controller Lifecycle
1. UITextView @property(nonatomic,readonly,retain) NSTextStorage *textStorage 是 NSMutableAttributedS ...
- CS193p Lecture 4 - Foundation, Attributed Strings
消息机制 调用一个实例(instance)的方法(method),就是向该实例的指针发送消息(message),实例收到消息后,从自身的实现(implementation)中寻找响应这条消息的方法. ...
- [C2P3] Andrew Ng - Machine Learning
##Advice for Applying Machine Learning Applying machine learning in practice is not always straightf ...
- uiscrollView UINavigation和uitabbar添加约束的问题
首先是层次问题, 我的storyboard中 底层是一个View(viewcontroller自带)上面添加了一个UIScrollview(添加约束, 上下左右全为0), 在UIScrollview上 ...
随机推荐
- 混用ngui和ugui渲染顺序问题
http://blog.csdn.net/xtxy/article/details/38332801 为NGUI panel 添加 sorting layer 接着上一篇文章的问题,看到了老外做的一个 ...
- 多线程中join()
这个鬼东西百度了好久没弄明白,大佬们代码一粘贴好了完事,借助官方api终于是理解了,当然如果有问题欢迎大家用键盘来羞辱我. 首先 join有什么用? 他是用来确定线程何时结束的 , Thread ...
- python的pip管理工具
Python有两个著名的包管理工具easy_install.py和pip.在Python2.7的安装包中,easy_install.py是默认安装的,而pip需要我们手动安装. 在此进行编译安装pip ...
- VMWare版本兼容问题处理
其他电脑拷贝过来的VMWare虚拟机启动时报错: 在虚拟机根目录中找到"vmx"后缀文件,发现原来的VM版本为14,而本地的VMWare版本为11. virtualHW.versi ...
- python学习之串口编程
# coding=utf-8import serial ser=serial.Serial('com1',9600)ser.write(b"hello")while 1: ser. ...
- nodejs学习(3) express+socket.io
//node var express=require('express'); var app = express(); var server = require('http').createServe ...
- Solr查询中涉及到的Cache使用及相关的实现【转】
转自:http://www.cnblogs.com/phinecos/archive/2012/05/24/2517018.html 本文将介绍Solr查询中涉及到的Cache使用及相关的实现.Sol ...
- nodejs express session用法(含保存到redis)
普通用法: var express = require('express'); var session = require('express-session'); var app = express( ...
- LogBack日志小记
优势 看了一下Logback的官方文档,说换成LogBack的原因大概有一下几个: 1. 说是logBack的设计开发和log4j是同一批人员,重写了内核,习惯上总体跟log4j一样,不会有太多生疏感 ...
- matlab均方根误差
Matlab均方根误差的计算 http://blog.sina.com.cn/s/blog_6210f654010308kv.html