一个简单的Navigation的例子,demo里面用到了上一个demo的MVC,可以参考下:http://www.cnblogs.com/daomul/p/4426063.html

建立一个Nav其实灰常简单,通过Editor->embed in ->NaviationController可以直接引入,就不具体介绍了。效果如下:

代码如下:

ShowStatesViewController.m:

  1. //
  2. // ShowStatesViewController.m
  3. // testForNotification
  4. //
  5. // Created by bos on 15-4-15.
  6. // Copyright (c) 2015年 axiba. All rights reserved.
  7. //
  8.  
  9. #import "ShowStatesViewController.h"
  10.  
  11. @interface ShowStatesViewController ()
  12.  
  13. @property (weak, nonatomic) IBOutlet UILabel *charactersLabel;
  14.  
  15. @end
  16.  
  17. @implementation ShowStatesViewController
  18.  
  19. #pragma life of the view
  20.  
  21. - (void)viewDidLoad {
  22. [super viewDidLoad];
  23. // Do any additional setup after loading the view.
  24.  
  25. }
  26.  
  27. -(void)viewWillAppear:(BOOL)animated
  28. {
  29. [super viewWillAppear:animated];
  30.  
  31. //when the view appear ,we should update the ui from the new value
  32. [self UpdateUI];
  33. }
  34.  
  35. #pragma getter and setter
  36. -(void)setTestContent:(NSAttributedString *)testContent
  37. {
  38. _testContent = testContent;
  39. //if (self.view.window) {
  40. [self UpdateUI];
  41. //}
  42. }
  43.  
  44. #pragma private function
  45. -(void)UpdateUI
  46. {
  47. //push the attributeName into
  48. self.charactersLabel.text = [NSString stringWithFormat:@"%lu of all",(unsigned long)[[self getCharactersByAttributeName:NSForegroundColorAttributeName] length]];
  49. }
  50.  
  51. -(NSAttributedString *)getCharactersByAttributeName:(NSString *)attributedName
  52. {
  53. NSMutableAttributedString *character = [[NSMutableAttributedString alloc]init];
  54.  
  55. int index = ;
  56.  
  57. // one by one check the range of the attribute
  58. while(index < [self.testContent length])
  59. {
  60. NSRange mRange;
  61. //the effect of range
  62. id value = [self.testContent attribute:attributedName atIndex:index effectiveRange:&mRange];
  63.  
  64. if(value)
  65. {
  66. //the range of the characters
  67. [character appendAttributedString:[self.testContent attributedSubstringFromRange:mRange]];
  68. index = mRange.length + mRange.location;
  69. }else{
  70. index++;
  71. }
  72. }
  73.  
  74. return character;
  75. }
  76.  
  77. - (void)didReceiveMemoryWarning {
  78. [super didReceiveMemoryWarning];
  79. // Dispose of any resources that can be recreated.
  80. }
  81.  
  82. /*
  83. #pragma mark - Navigation
  84.  
  85. // In a storyboard-based application, you will often want to do a little preparation before navigation
  86. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  87. // Get the new view controller using [segue destinationViewController].
  88. // Pass the selected object to the new view controller.
  89. }
  90. */
  91.  
  92. @end

ViewController.m

  1. //from other segue
  2. -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
  3. {
  4. if ([segue.identifier isEqualToString:@"calulate the num"]) {
  5. if ([segue.destinationViewController isKindOfClass:[ShowStatesViewController class]]) {
  6. ShowStatesViewController *showVC = (ShowStatesViewController *)segue.destinationViewController;
  7. showVC.testContent = self.content.textStorage;
  8. }
  9. }
  10. }

注意的是:

1、 getCharactersByAttributeName这个方法是用来:通过属性类型(比如颜色,这里就是用的颜色)来获得具备该属性的文字,当然这个文字是属性化的文字,里面的算法中range是作为连续的字符是具备该属性的范围

2、UpdateUI主要是用来更新UI界面效果,通过获取该属性字符串的长度返回到第二个界面中显示

3、ViewController.m主要是通过这个界面传递值到 第二个界面,传递是通过segue的,需要通过判断identifier,这里需要在storyBoard中设置对应上。

demo下载:http://pan.baidu.com/s/1dDCkgt7

OC开发_Storyboard——NaviationController简单例子的更多相关文章

  1. OC开发_Storyboard——iPad开发

    iPad开发(Universal Applications) 一.iPad 1.判断是否在iPad上 BOOL iPad = ([[UIDevice currentDevice] userInterf ...

  2. OC开发_Storyboard——Core Data

    一 .NSManagedObjectContext 1.我们要想操作Core Data,首先需要一个NSManagedObjectContext2.那我们如何获得Context呢:创建一个UIMana ...

  3. OC开发_Storyboard——block和动画

     一.协议 @optional :可选的 @requied :必须实现的  二.block 代码块 1. 以一个^开头,然后是参数,然后是一个大括号,包含我们的代码块 [aDictionary enu ...

  4. OC开发_Storyboard——视图控制生命周期以及NSNotifications

    一.生命周期 1.ViewDidLoad: 一般的初始化,除了几何图形的初始化(这个时候还没确定) 2.ViewWillAppear: 代表你的视图将要在屏幕上显示,可能会调用多次,对不可见时可能能改 ...

  5. OC开发_Storyboard——MapKit

    一.Core  Location 1.基本对象 @propertys: coordinate, altitude, horizontal/verticalAccuracy, timestamp, sp ...

  6. OC开发_Storyboard——AutoLayout

    一.autolayout 自动布局: 1. 设置所有视图框架的三种方法,可以通过代码创建也可以storyboard设置 = 规则 (1 蓝线+约束:(位置) 使用蓝线,根据蓝线拖动控件,只是告诉Xco ...

  7. OC开发_Storyboard——多线程、UIScrollView

    一.多线程 1.主队列:处理多点触控和所有UI操作(不能阻塞.主要同步更新UI) dispatch_queue_t mainQueue = dispatchg_get_main_queue(); // ...

  8. OC开发_Storyboard——UITableView

    一.tableView 1.datasource数据源 (1 构造每一个tableVIewCell的方法:cellForRowAtIndexPath,这里的 dequeueReusableCellWi ...

  9. OC开发_Storyboard——UIApplication和网络活动指示器

    一.UIApplication 只有一个实例: UIApplication *myApplication = [UIApplication sharedApplication]; 属性如果设置为YES ...

随机推荐

  1. 使用explain分析sql语句

    sql语句优化 : sql语句的时间花在哪儿? 答: 等待时间 , 执行时间. 这两个时间并非孤立的, 如果单条语句执行的快了,对其他语句的锁定的也就少了. 所以,我们来分析如何降低执行时间. : s ...

  2. html5 websocket + node.js 实现网页聊天室

    1 client:    socket.io server:   node.js +  express  + socket.io 一个简单的聊天室  demo,没有注册,内置了一些测试用户 2 cli ...

  3. 关于Unity中UI中的RawImage节点以及制作地图滚动效果

    一.贴图的Texture Type属性类型 Texture:会把贴图的大小转换为最相近的2的n次方,比如400X1369会转换为512X1024. Sprite 2D:是贴图的原始大小. 二.RawI ...

  4. e552. 取Applet的参数

    An applet can be configured through the use of applet parameters. For example, the contents for a ne ...

  5. Loadrunner的Socket脚本关联小技巧

    Socket脚本关联小技巧 我们在socket脚本调试的时候经常会遇到很多问题,比如:socket包中繁杂的二进制编码,socket数据如何进行截取,如何对socket数据包进行参数化等等,以下几点内 ...

  6. java文件读写工具类

    依赖jar:commons-io.jar 1.写文件 // by FileUtilsList<String> lines = FileUtils.readLines(file, " ...

  7. Unity的Asset Store商店下载文件路径

    如果之前在Asset Store商店下载过资源包,结果下次用的时候找不到了,不用急,其实Unity把它自动保到下面这个目录了,最后一个文件夹名与版本号有关,找到前面的即可. C:\Users\Admi ...

  8. matlab imresize 改变图像大小

    功能:改变图像的大小. 用法:B = imresize(A,m)B = imresize(A,m,method)B = imresize(A,[mrows ncols],method) B = imr ...

  9. 用cocos2d 2.1制作一个过河小游戏(4): 游戏主逻辑BaseLayer设计

    前段时间一直在忙.没有时间更新博客.今天还是抽点时间把最后一小部分游戏的实现放上来吧. BaseLayer.h: #import <GameKit/GameKit.h> #import & ...

  10. ssh&scp指定密钥

    scp时指定密钥: scp -P22   -r -i ~/.ssh/dongjing-shanghai.pem root@kiri_pro01:/data/backup/back_from_japan ...