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

IOS-导航视图控制器的使用

时间:2014-12-07 17:55:47      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:uitableview   uinavigationcontroll   

摘要

    本章主要在上一章的基础上修改,把其改为导航控制器的例子,其他的改变不大

运行结果

bubuko.com,布布扣

过程概要

  1. 新建基于基本视图的程序,然后改为基于导航控制器的工程,方法是:打开Main.storyboary,选中ViewCtroller,然后在XCode中Eeditor->Ebed in->Nav..即可实现转换
  2. 为二级页面新建一个类,本例子全部使用一个二级页面对象,使用Title和页面背景色作区分

主要代码

#pragma UITableViewDelegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 修改子页面的信息
    NSString* cityName = [[self._dictProvince objectForKey:[self._arrayKeys objectAtIndex:indexPath.section]] objectAtIndex:indexPath.row];
    self._cityView.title = cityName;
    self._cityView.view.backgroundColor = [UIColor colorWithRed:arc4random()%100/100.0f green:arc4random()%100/100.0f blue:arc4random()%100/100.0f alpha:1.0f];
    
    // 导航到下一级页面
    [self.navigationController pushViewController:self._cityView animated:YES];
}


工程代码


IOS-导航视图控制器的使用

标签:uitableview   uinavigationcontroll   

原文地址:http://blog.csdn.net/arbboter/article/details/41786963

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