Hi there i've got a little problem with an app i'm trying to make and i feel if i can crack it i should be able to finish the app.
Basically it s a view based application that switches between different views till i end up on a specific view which has a UITableView. I would like to be able to click on the first row in this case 'The British Open' and have that load my next view entitled 'BritishOpenYears.xib'.
I have put in my code for the .m file which will hold the table, does anyone have any ideas what i'm doing wrong. The table loads with the correct row names but will not load the view when selected.
HELP PLEASE!!!!!!!
- (void)tableView

UITableView *)tableView didSelectRowAtIndexPath

NSIndexPath *)indexPath {
if ([[tableList objectAtIndex:indexPath.row] isEqual:@"The British Open"])
{
BritishOpenYears *second = [[BritishOpenYears alloc] initWithNibName:@"BritishOpenYears" bundle:nil];
[second setTitle:@"The British Open"];
[self.navigationController pushViewController:second animated:YES];
}
}