Wednesday, 14 December 2011

DidSelectRow code Table View-iPhone

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    // Navigation logic may go here. Create and push another view controller.
    if(indexPath.section==0)
    {
LiveScoreViewController *detailViewController = [[LiveScoreViewController alloc] initWithNibName:@"LiveScoreViewController" bundle:nil];
    // ...
    // Pass the selected object to the new view controller.
    [self.navigationController pushViewController:detailViewController animated:YES];
    [detailViewController release];

}
}

No comments:

Post a Comment