I'm seeing other questions posted re iOS 6 so I hope its now kosher to ask them here ...
I am testing a published app built using Xcode GM 4.5. I am getting a crash when loading a table view controller on a device running GM iOS 6 firmware. The crash doesn't happen when building to devices running iOS 5.1 or 4.3.5. I am infering (perhaps incorrectly) from the error included below that there must be a problem with the way the table view's outlet is connected but as it works in 5.1 and 4.3.5 and the code is identical as to what is happening in iOS 6 I am not clear as to what is going wrong.
I've deleted previous versions of the app from the device, reset it and cleaned the project but that does not help.
I've looked at release notes but am not seeing anything that points to what needs to be done in iOS 6.
The error is:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UITableViewController loadView] loaded the "XViewController" nib but didn't get a UITableView.'
Thanks for any pointers on what I need to do to fix this.
-- Additional info:
(Note: XViewController is actually LogViewController in the app.)
In the class interface file I have the outlet declared as:
@property (strong, nonatomic) IBOutlet UITableView *logTableView;
In the xib here is the connections inspector for File's Owner: