I want to be able to switch between views. I have been writing some code, but it is not working?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
{
AlleRumViewController *allerum = [[AlleRumViewController alloc] initWithNibName:nil bundle:nil];
if ([[tableData objectAtIndex:indexPath.row] isEqual:@"Alle rum"]) {
[self presentModalViewController:allerum animated:YES];
}
}
Do any of you know how i can switch?