I have little knowledge with the iPhone SKD (don’t even know what code it is objective c?). I have so far got a table view working, and then showing content on another nib file once a row clicked.
I have elseif statements for each row, telling them to load a nib file inside the ViewController. However, One row is causing a problem, it crases the app.
else if ([[array objectAtIndex:indexPath.row] isEqual:@"ASCII Characters"])
{
Asciicharacters *asciicharacters = [[Asciicharacters alloc] initWithNibName:@"ASCII Characters" bundle:nil];
[self.navigationController pushViewController:asciicharacters animated:YES];
[asciicharacters release];
}
Here is an image of the debugger console:

I don’t what to do, there is no errors displaying at all. It just crashes the app, if that row is clicked (both on simulator and iPhone). I think is’t something to do with the spaces with in the name. This is the only row that has a space. But I need a space otherwise it would look silly. Thanks 🙂
I think you need to change the line
with
then only it works as with rule of objective C