Since I have upgraded my project to xcode8 and swift3 I am having troubles when running my app on ios10 devices and simulators.
I can start the app normally but after a while using it I get the following error:
*** Terminating app due to uncaught exception
'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle:
'NSBundle </Users/****/Library/Developer/CoreSimulator/Devices/****/data/Containers/Bundle/Application/****/*****.app> (loaded)'
with name 'Ncx-Ud-4zl-view-1i6-0r-ivc' and directory 'Main.storyboardc''
***
The strange thing is that I can navigate through the same menu or view sometimes and after 3 or 4 times it gives me the error.
The app works properly on ios9 devices.
Update: I finally solved it updating my CoreDataStackManager class to the Swift3 sintax and also avoiding using caches on my NSFetchedResultsControllers.