先上流程图

一,首先在.h中声明UIViewController类属性

//界面
@property(nonatomic,strong)UIView *mainScene;
@property(nonatomic,strong)UIView *aboutScene;
@property(nonatomic,strong)UIView *editScene;
@property(nonatomic,strong)UIView *lineColorScene;
@property(nonatomic,strong)UIView *bgColorScene;
@property(nonatomic,strong)UIView *lineWidthScene;
@property(nonatomic,strong)UIView *detailScene;
二,在.m文件中做好初始化和框架

//七大视图作为本类的属性,便于在类的内部调用
//视图加载完后,添加7大视图容器
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [self.view addSubview:self.mainScene];
    [self.view addSubview:self.aboutScene];
    [self.view addSubview:self.editScene];
    [self.view addSubview:self.lineColorScene];
    [self.view addSubview:self.bgColorScene];
    [self.view addSubview:self.lineWidthScene];
    [self.view addSubview:self.detailScene];
}

//当根视图将要显示时会触发这个方法
-(void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    //将首页提前
    [self.view bringSubviewToFront:self.mainScene];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark -property methods
-(UIView *)mainScene
{
    //如果不等于空 则实例化场景
    if (_mainScene!=Nil) {
        return _mainScene;
    }
   
    _mainScene=[[UIView alloc]initWithFrame:self.view.bounds];
    _mainScene.backgroundColor=[UIColor whiteColor];
    //实例化测试控制按钮
    CGRect frame=CGRectMake(0, 100, 320, 60);
    UISegmentedControl *testControl=[[UISegmentedControl alloc]initWithFrame:frame];
    testControl.momentary=YES;
    [testControl insertSegmentWithTitle:@"About" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"Drawing" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"New" atIndex:0 animated:NO];
    testControl.tag=KMainSceneTestControlTag;
    //添加测试按钮触发的测试方法
    [testControl addTarget:self action:@selector(testSegue:) forControlEvents:UIControlEventValueChanged];
    [_mainScene addSubview:testControl];
    return _mainScene;
}

-(UIView *)aboutScene
{
     //如果不等于空 则实例化场景
    if (_aboutScene!=Nil) {
        return _aboutScene;
    }
    _aboutScene=[[UIView alloc]initWithFrame:self.view.bounds];
    _aboutScene.backgroundColor=[UIColor whiteColor];
    
    CGRect frame=CGRectMake(0, 100, 320, 60);
    UISegmentedControl *testControl=[[UISegmentedControl alloc]initWithFrame:frame];
    testControl.momentary=YES;
    [testControl insertSegmentWithTitle:@"" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"Drawing" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"Back" atIndex:0 animated:NO];
    testControl.tag=KAboutSceneTestControlTag;
    //添加测试按钮触发的测试方法
    [testControl addTarget:self action:@selector(testSegue:) forControlEvents:UIControlEventValueChanged];
    [_aboutScene addSubview:testControl];
    return _aboutScene;
}

-(UIView *)editScene
{
    //如果不等于空 则实例化场景
    if (_editScene!=Nil) {
        return _editScene;
    }
    _editScene=[[UIView alloc]initWithFrame:self.view.bounds];
    _editScene.backgroundColor=[UIColor grayColor];
    
    CGRect frame=CGRectMake(0, 100, 320, 60);
    UISegmentedControl *testControl=[[UISegmentedControl alloc]initWithFrame:frame];
    testControl.momentary=YES;
    [testControl insertSegmentWithTitle:@"背景" atIndex:0 animated:NO];
     [testControl insertSegmentWithTitle:@"画笔颜色" atIndex:0 animated:NO];
     [testControl insertSegmentWithTitle:@"画笔大小" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"Back" atIndex:0 animated:NO];
    testControl.tag=KEditSceneTestControlTag;
    //添加测试按钮触发的测试方法
    [testControl addTarget:self action:@selector(testSegue:) forControlEvents:UIControlEventValueChanged];
    [_editScene addSubview:testControl];

return _editScene;
}

-(UIView *)lineColorScene
{
      //如果不等于空 则实例化场景
    if (_lineColorScene!=Nil) {
        return _lineColorScene;
    }
    _lineColorScene=[[UIView alloc]initWithFrame:self.view.bounds];
    _lineColorScene.backgroundColor=[UIColor blueColor];
    
    CGRect frame=CGRectMake(0, 100, 320, 60);
    UISegmentedControl *testControl=[[UISegmentedControl alloc]initWithFrame:frame];
    testControl.momentary=YES;
    [testControl insertSegmentWithTitle:@"完成" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"画笔颜色" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"取消" atIndex:0 animated:NO];
    testControl.tag=KLineColorSceneTestControlTag;
    //添加测试按钮触发的测试方法
    [testControl addTarget:self action:@selector(testSegue:) forControlEvents:UIControlEventValueChanged];
    [_lineColorScene addSubview:testControl];

return _lineColorScene;
}

-(UIView *)bgColorScene
{
     //如果不等于空 则实例化场景
    if (_bgColorScene!=Nil) {
        return _bgColorScene;
    }
    _bgColorScene=[[UIView alloc]initWithFrame:self.view.bounds];
    _bgColorScene.backgroundColor=[UIColor greenColor];
    
    CGRect frame=CGRectMake(0, 100, 320, 60);
    UISegmentedControl *testControl=[[UISegmentedControl alloc]initWithFrame:frame];
    testControl.momentary=YES;
    [testControl insertSegmentWithTitle:@"完成" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"背景颜色" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"取消" atIndex:0 animated:NO];
    testControl.tag=KBgColorSceneTestControlTag;
    //添加测试按钮触发的测试方法
    [testControl addTarget:self action:@selector(testSegue:) forControlEvents:UIControlEventValueChanged];
    [_bgColorScene addSubview:testControl];

return _bgColorScene;
}

-(UIView *)lineWidthScene
{
     //如果不等于空 则实例化场景
    if (_lineWidthScene!=Nil) {
        return _lineWidthScene;
    }
    _lineWidthScene=[[UIView alloc]initWithFrame:self.view.bounds];
    _lineWidthScene.backgroundColor=[UIColor brownColor];
    
    CGRect frame=CGRectMake(0, 100, 320, 60);
    UISegmentedControl *testControl=[[UISegmentedControl alloc]initWithFrame:frame];
    testControl.momentary=YES;
    [testControl insertSegmentWithTitle:@"完成" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"画笔大小" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"取消" atIndex:0 animated:NO];
    testControl.tag=KLineWidthSceneTestControlTag;
    //添加测试按钮触发的测试方法
    [testControl addTarget:self action:@selector(testSegue:) forControlEvents:UIControlEventValueChanged];
    [_lineWidthScene addSubview:testControl];

return _lineWidthScene;
}

-(UIView *)detailScene
{
      //如果不等于空 则实例化场景
    if (_detailScene!=Nil) {
        return _detailScene;
    }
    _detailScene=[[UIView alloc]initWithFrame:self.view.bounds];
    _detailScene.backgroundColor=[UIColor yellowColor];
    
    CGRect frame=CGRectMake(0, 100, 320, 60);
    UISegmentedControl *testControl=[[UISegmentedControl alloc]initWithFrame:frame];
    testControl.momentary=YES;
    [testControl insertSegmentWithTitle:@"Delete" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"" atIndex:0 animated:NO];
    [testControl insertSegmentWithTitle:@"Back" atIndex:0 animated:NO];
    testControl.tag=KDetailSceneTestControlTag;
    //添加测试按钮触发的测试方法
    [testControl addTarget:self action:@selector(testSegue:) forControlEvents:UIControlEventValueChanged];
    [_detailScene addSubview:testControl];

return _detailScene;
}

三,每个页面都得跳转,跳转方法添加如下:     (出口方法不确定是否有参数,我们传递一个参数为id类型)

#pragma mark -mainScene         出口方法
-(void)mainSceneToAboutScene:(id)sender
{
    //将关于界面提前
    [self.view bringSubviewToFront:self.aboutScene];
}
-(void)mainSceneToEditScene:(id)sender
{
    //将编辑界面提前
    [self.view bringSubviewToFront:self.editScene];
}
-(void)mainSceneToDetailScene:(id)sender
{
    //将详细界面提前
    [self.view bringSubviewToFront:self.detailScene];
}

#pragma mark -aboutScene        出口方法
-(void)aboutSceneBackMainScene:(id)sender
{
    //返回主界面
    [self.view bringSubviewToFront:self.mainScene];
}

#pragma mark -editScene         出口方法
-(void)editSceneToLineColorScene:(id)sender
{
    //将lineColor界面提前
    [self.view bringSubviewToFront:self.lineColorScene];
}

-(void)editSceneToBgColorScene:(id)sender
{
    //将BgColorScene界面提前
    [self.view bringSubviewToFront:self.bgColorScene];
}

-(void)editSceneToLineWidthScene:(id)sender
{
    //LineWidthScene提前
    [self.view bringSubviewToFront:self.lineWidthScene];
}

-(void)editSceneBackMainScene:(id)sender
{
    //MainScene提前
    [self.view bringSubviewToFront:self.mainScene];
}

#pragma mark -lineColorScene    出口方法
-(void)lineColorSceneBackEditScene:(id)sender
{
    //editScene提前
    [self.view bringSubviewToFront:self.editScene];
}

#pragma mark -bgColorScene      出口方法
-(void)bgColorSceneBackEditScene:(id)sender
{
    //editScene提前
    [self.view bringSubviewToFront:self.editScene];
}

#pragma mark -lineWidthScene    出口方法
-(void)lineWidthSceneBackEditScene:(id)sender
{
    //editScene提前
    [self.view bringSubviewToFront:self.editScene];
}

#pragma mark -detailScene       出口方法
-(void)detailSceneToEditScene:(id)sender
{
    //editScene提前
    [self.view bringSubviewToFront:self.editScene];
}

-(void)detailSceneBackMainScene:(id)sender
{
    //mainScene提前
    [self.view bringSubviewToFront:self.mainScene];
}

四,定义页面的tag作为宏

#define KMainSceneTestControlTag        1001
#define KAboutSceneTestControlTag       1002
#define KEditSceneTestControlTag        1003
#define KLineColorSceneTestControlTag   1004
#define KBgColorSceneTestControlTag     1005
#define KLineWidthSceneTestControlTag   1006
#define KDetailSceneTestControlTag      1007

五,实现跳转,都是一个模式,看一个就知道其他的了,下面把所有的都列举出来,其实并不复杂

#pragma mark --测试程序流程的方法
-(void)testSegue:(UISegmentedControl *)testControl
{
    switch (testControl.tag) {
        case KMainSceneTestControlTag:
        {
            switch (testControl.selectedSegmentIndex) {
                case 0:
                {
                    [self mainSceneToEditScene:nil];
                    break;
                }
                case 1:
                {
                    break;
                }
                case 2:
                {
                    [self mainSceneToAboutScene:nil];
                    break;
                }
                    
                default:
                    break;
            }
             break;
        }
            
        case KAboutSceneTestControlTag:
        {
            switch (testControl.selectedSegmentIndex) {
                case 0:
                {
                    [self aboutSceneBackMainScene:nil];
                    break;
                }
                case 1:
                {
                    
                    break;
                }
                case 2:
                {
                    
                    break;
                }
                    
                default:
                    break;
            }
            break;
        }
        case KEditSceneTestControlTag:
        {
            switch (testControl.selectedSegmentIndex) {
                case 0:
                {
                    [self editSceneBackMainScene:nil];
                    break;
                }
                case 1:
                {
                    [self editSceneToBgColorScene:nil];
                    break;
                }
                case 2:
                {
                    [self editSceneToLineColorScene:nil];
                    break;
                }
                case 3:
                {
                    [self editSceneToLineWidthScene:nil];
                    break;
                }
                  
                default:
                    break;
            }
            break;
        }
            
        case KLineColorSceneTestControlTag:
        {
            switch (testControl.selectedSegmentIndex) {
                case 0:
                {
                   [self lineColorSceneBackEditScene:nil];
                    break;
                }
                case 1:
                {
                   
                    break;
                }
                case 2:
                {
                    [self lineColorSceneBackEditScene:nil];
                    break;
                }
                    
                default:
                    break;
            }
            break;
        }
        case KLineWidthSceneTestControlTag:
        {
            switch (testControl.selectedSegmentIndex) {
                case 0:
                {
                    [self lineWidthSceneBackEditScene:nil];

break;
                }
                case 1:
                {
                    
                    break;
                }
                case 2:
                {
                    [self lineWidthSceneBackEditScene:nil];
                    break;
                }
                    
                default:
                    break;
            }
            break;
        }
            
        case KBgColorSceneTestControlTag:
        {
            switch (testControl.selectedSegmentIndex) {
                case 0:
                {
                    [self bgColorSceneBackEditScene:nil];
                    break;
                }
                case 1:
                {
                    
                    break;
                }
                case 2:
                {
                   [self bgColorSceneBackEditScene:nil];
                    break;
                }
                    
                default:
                    break;
            }
            break;
        }
        case KDetailSceneTestControlTag:
        {
            switch (testControl.selectedSegmentIndex) {
                case 0:
                {
                    [self detailSceneToEditScene:nil];
                    break;
                }
                case 1:
                {
                    
                    break;
                }
                case 2:
                {
                    [self detailSceneBackMainScene:nil];
                    break;
                }
                    
                default:
                    break;
            }
            break;
        }           
        default:
            break;
            
    }

IOS 作业项目(4)步步完成 画图 程序(上)的更多相关文章

  1. IOS 作业项目(4)步步完成 画图 程序(中续)

    一,程序布局整理 前言://1,程序启动//2,程序流程框架//3,程序界面一致//4,程序界面功能, //这里只做页面的固定功能, //在首次创建界面时,我们会指定好固定事件触发前的固定方法 //至 ...

  2. IOS 作业项目(4)步步完成 画图 程序(问题处理)终结

    一,解决换色程序崩溃问题 程序崩溃是因为颜色的内存被释放,添加如下类的内容即可 @implementation TuyaPath - (id)init { self = [super init]; i ...

  3. IOS 作业项目(4)步步完成 画图 程序(剧终)

    // //  CHViewController.m //  SuperDrawingSample // //  Created by JaikenLI on 13-11-21. //  Copyrig ...

  4. IOS 作业项目(4)步步完成 画图 程序(中)

    一,承接上文,继续本文  [UIButton buttonWithType:UIButtonTypeRoundedRect]; 如此声明的按钮才会有点击闪动的效果!如果直接frame方式声明就不会有. ...

  5. IOS 作业项目(2) 画图(保存,撤销,笔粗细设定功能)

    先上效果图

  6. IOS 作业项目 TableView两个section中cell置顶功能实现

    点击cell会置顶,其他的下移

  7. IOS 作业项目(3) 霓虹灯效果

    先上效果图 #import "CHViewController.h"@interface CHViewController (){    int i;    int j;}@pro ...

  8. IOS 作业项目(1) 关灯游戏 (百行代码搞定)

    1,准备工作,既然要开关灯,就需要确定灯的灯的颜色状态 首先想到的是扩展UIColor

  9. (转)直接拿来用!最火的iOS开源项目(一)

    1. AFNetworking 在众多iOS开源项目中,AFNetworking可以称得上是最受开发者欢迎的库项目.AFNetworking是一个轻量级的iOS.Mac OS X网络通信类库,现在是G ...

随机推荐

  1. JButton按钮

    1.方法 void  setSize(width,height):设置按钮大小 void  setBounds(x,y,width,heigth):设置按钮的左上角顶点位置和大小 void  setC ...

  2. 转: CSS中overflow的用法

    Overflow可以实现隐藏超出对象内容,同时也有显示与隐藏滚动条的作用,overflow属性有四个值:visible (默认), hidden, scroll, 和auto.同样有两个overflo ...

  3. 5种JavaScript和CSS交互的方法

      分享   分享   分享   分享   分享   随着浏览器不断的升级改进,CSS和JavaScript之间的界限越来越模糊.本来它们是负责着完全不同的功能,但最终,它们都属于网页前端技术,它们需 ...

  4. html,body最顶层元素.

    1,元素百比分是相对父元素,所有元素默认父元素是body. absolute,fixed[只有一个父元素,浏览器窗口]除外[浏览器窗口,为父元素].css3:vh,vw也永远相对,浏览器窗口.heig ...

  5. C# 小规模查找集合性能测试

    项目中包含浮点运算,大概每秒 20 - 100 万左右. 其计算结果每秒只包含1000个左右. 因此大量运算是重复性的.程序运行时,cpu 在 3% - 10% 浮动.打算将结果缓存.根据键值索值. ...

  6. C++-指针和引用的区别

    1,不存在空引用,指针可以为空 2,引用更高效,使用前不需要测试是否为空 3,指针可以被赋给别的对象,引用则不可以更改 总之,在对象有可能什么也不指向或者指向不同的对象的时候应该使用指针.

  7. 租房时代,K2 BPM软件带你拥抱更好生活

    提到租房子,你的第一反应肯定就是心酸的找房路,奇葩的极品房东……但租房对于年轻人来说又是生存路上必须面对的挑战.现在有一家公司想给你一段租房时代的美好回忆,它就是优客逸家. 优客逸家,隶属于四川优客投 ...

  8. 跨域SSO的实现

    翻译自CodeProject网站ASP.NET9月份最佳文章:Single Sign On (SSO) for cross-domain ASP.NET applications. 翻译不妥之处还望大 ...

  9. java接收键盘输入

    System.out.print("Please input String to check:");//提示输入 Scanner sc=new Scanner(System.in) ...

  10. 使用OCI向Oracle插入Geometry数据

    使用C/C++操作Oracle数据库,使用OCI可谓是最强大,当然也是最难的方式.Oracle是一个功能复杂而强大的数据库,它可以很好的支持空间数据(Oracle spatial).如何使用OCI向O ...