Rahul Vyas
Rahul Vyas

Reputation: 28750

what does this error mean in xcode debugger window?

[Session started at 2009-05-28 22:36:25 +0600.]
2009-05-28 22:36:29.400 FlashCards[4440:20b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UITableViewController loadView] loaded the "indexView" nib but didn't get a UITableView.'
2009-05-28 22:36:29.407 FlashCards[4440:20b] Stack: (
    2517688651,
    2422246971,
    2517688107,
    2517688170,
    818121900,
    816648934,
    816688492,
    816684429,
    816681688,
    817870076,
    837317240,
    837317032,
    837315376,
    837314643,
    2517182914,
    2517189668,
    2517191928,
    829005112,
    829005309,
    816175835,
    816221412,
    9384,
    9238
)

Upvotes: 0

Views: 674

Answers (2)

thierryb
thierryb

Reputation: 3738

You could do in gdb

info symbol 9384

very useful tips on cocoawithlove :

http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html

Upvotes: 0

Gareth Davis
Gareth Davis

Reputation: 28069

It means that you have a UITableViewController but it's view isn't actually a UITableView. Has this the other day. Check what the class of the controller is in interface builder.

Upvotes: 4

Related Questions