To go to your desired view, you could use the navigation controller & the tableView delegate method like so:
Code:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
YourDesiredView *desiredViewControl = [[YourDesiredView alloc]initWithNibName:@"DesiredView" bundle:nil];
[self.navigationController pushViewController:desiredViewControl animated:YES];
[desiredViewControl release];
}
dont forget to import the YourDesiredView.h in the class containing your tableView.