We have an application built using iOS 6 sdk (deployed on iOS 5) using Storyboards, which crashes in iOS 5 (only) with this error:
[myApp] * Application terminated due to an uncaught exception "NSInternalInconsistencyException", reason: "NIB data is invalid."
The scene in question is a subclass of the UITableViewController that contains the UITableView and the added UITextView property.
I have no idea what is invalid about this or why it works great in iOS 6.
Any ideas?
PS: I saw that it looked like a similar question about nibs and creating custom cells that suggested disabling auto-layout, but this application uses storyboards, has static cells, and auto-layout is already turned off.
source share