iPhone中的UISegmentedControl导航问题

时间:2011-03-18 12:24:43

标签: iphone ios uisegmentedcontrol

我已经进行了分段控制。

因为有三个部分..

现在我使用了一个表,当我选择不同的段时...相应的数据会出现在该表的行中..

现在我的问题......

当我选择段1时...它应该导航到FirstViewController ...当我从出现的表中选择行

当我选择段2时...它应该导航到SecondViewController ...当我从出现的表中选择行

当我选择段3时...它应该导航到ThirdViewController ...当我从出现的表中选择行

其中FirstViewController,SecondViewController,ThirdViewController是带有一些Image的简单viewControllers

怎么做?

2 个答案:

答案 0 :(得分:1)

完成..

我做了什么..我确实存储了选择分段控件的值。

然后根据所选的段控制..我在行中的开关盒做了选择..

rathodrc

答案 1 :(得分:0)

在tableview委托方法

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)newIndexPath

使用segmentcontrol.selectedSegmentIndex检查段控件的选定索引。根据这个推动你需要的任何视图控制器。