+3  A: 

While tableV is declared to be a TableView, it's most likely initialized with a simple UIViewConrtoller, as it appears in your code. Try changing the line to:

TableView *tableV = [[TableView alloc] initWithNibName:@"TableView" bundle:nil];

And TableView should be a subtype of UITableViewController.

By the way, the same should probably happen with GameView as well.

notnoop
Can someone be that silly...? THANKS A LOT, of course that's it... you saved my day...
swalkner
oh, please say controller and not conrtoller, it can save so many errors =D
Time Machine