Still seeing this problem with XCode 8.2.1, but I am able to fix the problem by modify these in the storyboard xml file:
Delete customModuleProvider="target"
in the viewController tag:
- <viewController ... customModule="Flights" customModuleProvider="target" sceneMemberID="viewController">
+ <viewController ... customModule="Flights" sceneMemberID="viewController">
Delete customModule="Flights" customModuleProvider="target"
in the widget tag (in my case, a label tag):
- <label ... translatesAutoresizingMaskIntoConstraints="NO" id="PzF-6K-Hpi" customClass="YZLabel" customModule="Flights" customModuleProvider="target">
+ <label ... translatesAutoresizingMaskIntoConstraints="NO" id="PzF-6K-Hpi" customClass="YZLabel">
I find that step 1 is very important too to resolve the crash/warning and cannot be skipped.