有三个view,分别为view1、view2、view3,通过UISegmentedControl进行三个view的切换。

  1. @interface UIViewDemoViewController : UIViewController {
  2. IBOutlet UIView *view1;
  3. IBOutlet UIView *view2;
  4. IBOutlet UIView *view3;
  5. }
  6. - (IBAction)switchViews:(id)sender;
  7. @end

在Interface Builder中分别建立三个view,关联到各自的输出口,每个view上的UISegmentedControl关联到switchViews:操作。

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. [self.view addSubview:view1];
  4. [self.view addSubview:view2];
  5. [self.view addSubview:view3];
  6. }
  7. - (IBAction)switchViews:(id)sender{
  8. UISegmentedControl *segmentedControl = sender;
  9. [[NSNotificationCenter defaultCenter] postNotificationName:@"switchViews" object:[NSNumber numberWithInteger:[segmentedControl selectedSegmentIndex]]];
  10. }

接着,为UISegmentedControl控件建立一个处理类。

  1. @interface SegmentedControl : UISegmentedControl {
  2. IBOutlet UIView *view1;
  3. IBOutlet UIView *view2;
  4. IBOutlet UIView *view3;
  5. IBOutlet UIViewDemoViewController* viewController;
  6. }
  7. @end

将UISegmentedControl控件的Class改为刚创建的处理类:SegmentedControl,然后,将UISegmentedControl控件关联到四个输出口:view分别关联到刚创建的三个view上,viewController关联到File's Owner上。

  1. - (void)awakeFromNib{
  2. [[NSNotificationCenter defaultCenter] addObserver:self
  3. selector:@selector(switchViews:)
  4. name:@"switchViews"
  5. object:nil];
  6. }
  7. - (void)switchViews:(NSNotification*)notification{
  8. NSNumber *viewNumber = [notification object];
  9. NSInteger i = [viewNumber integerValue];
  10. [self setSelectedSegmentIndex:i];
  11. UIView *chosenView = nil;
  12. switch (i) {
  13. case 0:
  14. chosenView = view1;
  15. break;
  16. case 1:
  17. chosenView = view2;
  18. break;
  19. case 2:
  20. chosenView = view3;
  21. break;
  22. default:
  23. break;
  24. }
  25. if (chosenView) {
  26. [[viewController view] bringSubviewToFront:chosenView];
  27. }
  28. }
  29. - (void)dealloc{
  30. [super dealloc];
  31. [[NSNotificationCenter defaultCenter] removeObserver:self];
  32. }

代码可以到视图切换的动画效果进行下载。

[转]IOS Segment页面之间view的切换的更多相关文章

  1. IOS—通过ChildViewController实现view的切换

    IOS-通过ChildViewController实现view的切换 在以前,一个UIViewController的View可能有很多小的子view.这些子view很多时候被盖在最后,我们在最外层Vi ...

  2. IOS中两个view的切换

    在ios中,rootview为PassWordViewController,secondview为SecondViewController,实现在rootview中听过一个跳转按钮实现跳转到secon ...

  3. ios中两个view动画切换

    @interface ViewController () @property(nonatomic,retain)UIView *redview; @property(nonatomic,retain) ...

  4. IOS关于UIViewController之间的切换

    IOS关于UIViewController之间的切换 1.NavigationController切换UIViewController的两种方式 方法一右侧进入 1 SecondViewControl ...

  5. IOS 页面之间的传值(主讲delegate)

    IOS的Delegate,通俗一点说就是页面之间的传值. 总结一下现在知道的IOS页面之间传值的方式有三种 1.使用NSNotification发送通知的传值 主要是通过NSNotificationC ...

  6. 在uwp仿IOS的页面切换效果

    有时候我们需要编写一些迎合IOS用户使用习惯的uwp应用,我在这里整理一下仿IOS页面切换效果的代码. 先分析IOS的页面切换.用户使用左右滑动方式进行前进和后退,播放类似于FlipView的切换动画 ...

  7. Vue路由实现之通过URL中的hash(#号)来实现不同页面之间的切换(图表展示、案例分析、附源码详解)

    前言 本篇随笔主要写了Vue框架中路由的基本概念.路由对象属性.vue-router插件的基本使用效果展示.案例分析.原理图解.附源码地址获取. 作为自己对Vue路由进行页面跳转效果知识的总结与笔记. ...

  8. Visual Studio跨平台开发实战(3) - Xamarin iOS多页面应用程式开发

    原文 Visual Studio跨平台开发实战(3) - Xamarin iOS多页面应用程式开发 前言 在前一篇教学中, 我们学会如何使用Visual Studio 搭配Xcode 进行iOS基本控 ...

  9. (转)iOS应用程序生命周期(前后台切换,应用的各种状态)详解

    原文:http://blog.csdn.net/totogo2010/article/details/8048652 iOS应用程序生命周期(前后台切换,应用的各种状态)详解         分类:  ...

随机推荐

  1. 设置ToggleButton、Switch、CheckBox和RadioButton的显示效果

    ToggleButton.Switch.CheckBox和RadioButton都是继承自android.widget.CompoundButton,意思是可选择的,因此它们的用法都很类似.Compo ...

  2. 游戏开场镜头拉近(Unity3D开发之四)

    猴子原创,欢迎转载.转载请注明: 转载自Cocos2D开发网–Cocos2Dev.com,谢谢! 原文地址: http://www.cocos2dev.com/? p=553 今天看了个Demo.发现 ...

  3. 手机root初体验

    看到别人写的一些自己想知道的东西,顿时感到很有兴趣也很强大,固然做一个牛人有很多小粉丝是无比崇高的,可去往牛人的路上也不能少了自己~加油! 一 我来解释一下什么是ROOT以及原理 是不是要ROOT,是 ...

  4. java基础系列——线程池

    一.线程池的创建 我们可以通过ThreadPoolExecutor来创建一个线程池. public ThreadPoolExecutor(int corePoolSize, int maximumPo ...

  5. Oracle分析函数之开窗子句-即WINDOWING子句

    Oracle的分析函数,对我们进行统计有很大的帮助,可以避免一些子查询等操作,在统计中,我们对开窗函数的接触较少,下面主要介绍下开窗函数的使用; http://www.itpub.net/thread ...

  6. BZOJ 2946: [Poi2000]公共串( 后缀自动机 )

    一个串建后缀自动机, 其他串在上面跑, 然后用当前串跑的去更新全部 ------------------------------------------------------------------ ...

  7. leetcode Contains Duplicate python

    Given an array of integers, find if the array contains any duplicates. Your function should return t ...

  8. linux install nginx error

    1 2 3 4 5 6 7 8 9 10 11 [mahao01@127.0.0.1 nginx-1.2.9]$ make make -f objs/Makefile make[1]: Enterin ...

  9. java之适配器模式

    interface Window {     public void open();     public void close();     public void activated();     ...

  10. JS笔记 入门第二

    输出内容 document.write(); alert("hello!"); alert(mynum); </script> 注:alert弹出消息对话框(包含一个确 ...