首页 > 代码库 > IOS-导航视图控制器的使用

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

摘要

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

运行结果


过程概要

  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-导航视图控制器的使用