TableView行选择问题

时间:2010-07-11 21:22:59

标签: iphone uitableview

我有基于标签的应用程序,带有2个标签 - > 主页新闻

在我的新闻标签中,我有一个包含2行的表格,一般新闻体育新闻

当我点击一般新闻时,我想显示我的RSS视图。 (使用按钮返回“新闻”选项卡)

请有人告诉我该怎么做,我在网上查看并且非常困惑。

万分感谢。

1 个答案:

答案 0 :(得分:0)

我创建了一个控制器,在.m文件中我做了以下

//覆盖以支持表视图中的行选择。 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

[tableView deselectRowAtIndexPath:indexPath animated:YES];

if ([[array objectAtIndex:indexPath.row] isEqual:@"General News"])
    {

        Red *red = [[Red alloc] initWithNibName:@"NewsView2" bundle:nil];
        [self.navigationController pushViewController:red animated:YES];
        [red release];

    }

else if ([[array objectAtIndex:indexPath.row] isEqual:@"Traffic Reports"])
{
    Blue *blue = [[Blue alloc] initWithNibName:@"TrafficReports" bundle:nil];
    [self.navigationController pushViewController:blue animated:YES];
    [blue release];
}
else if ([[array objectAtIndex:indexPath.row] isEqual:@"Weather"])
{
    Blue *blue = [[Blue alloc] initWithNibName:@"WeatherView" bundle:nil];
    [self.navigationController pushViewController:blue animated:YES];
    [blue release];
}

}