码迷,mamicode.com
首页 > 移动开发 > 详细

ios基础篇(十一)——UINavgationController的使用(二)页面切换

时间:2015-12-14 18:24:00      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

上篇说到了添加UIBarButtonItem,接下来说说界面切换;

1、首先我们在刚才的RootViewController中添加一个按钮用来实现跳转:

打开RootViewController.m(我就继续写了),添加一个跳转button:

技术分享

效果图:

技术分享

2、button动作实现,新建一个NewViewController继承自UIViewController;用pushViewController到navigationController中去;

技术分享

#import "NewViewController.h"
- (void)nextAction{
    
    NewViewController *NewVC = [[NewViewController alloc] init];
    [self.navigationController pushViewController:NewVC animated:YES];
    NewVC.title = @"NewViewController";
}

点击button,如图Back为系统自带按钮;

技术分享

如果不想使用系统自带按钮,我们可以自定义按钮:

 UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle:@"返回"style:UIBarButtonItemStyleDone target:nil action:nil];
    self.navigationItem.backBarButtonItem = backButton;

如图:

技术分享

3、title的自定义:

 1 #import "NewViewController.h"
 2 
 3 @interface NewViewController ()
 4 
 5 @end
 6 
 7 @implementation NewViewController
 8 
 9 - (void)viewDidLoad {
10     [super viewDidLoad];
11     // Do any additional setup after loading the view.
12 
13     UILabel *title = [[UILabel alloc] init];
14     title.text = @"标题";
15     title.font = [UIFont systemFontOfSize:20];
16     [title sizeToFit];
17     self.navigationItem.titleView = title;
18     
19 }

效果图:

技术分享

4、如果想放置多个按钮:

 NSArray *colorArray = @[@"", @"", @""];
    UISegmentedControl *segmentCtrl = [[UISegmentedControl alloc] initWithItems:colorArray];
    segmentCtrl.selectedSegmentIndex = 1;
    segmentCtrl.tintColor = [UIColor redColor];
    self.navigationItem.titleView = segmentCtrl;

效果图:

技术分享

添加点击响应事件:

[segmentCtrl addTarget:self action:@selector(segmentAction:) forControlEvents:UIControlEventValueChanged];

- (void)segmentAction:(id)segment{

    switch ([segment selectedSegmentIndex]) {
        case 0:
        {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"您选择了颜色黑" delegate:self cancelButtonTitle:@"" otherButtonTitles:@"", nil];
            [alert show];

        }
            break;
        case 1:
        {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"您选择了颜色白" delegate:self cancelButtonTitle:@"" otherButtonTitles:@"", nil];
            [alert show];
            
        }
            break;
        case 2:
        {
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"您选择了颜色灰" delegate:self cancelButtonTitle:@"" otherButtonTitles:@"", nil];
            [alert show];
            
        }
            break;

        default:
            break;
    }
}

效果图:

技术分享

技术分享

技术分享

 

ios基础篇(十一)——UINavgationController的使用(二)页面切换

标签:

原文地址:http://www.cnblogs.com/0320y/p/5045554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!