I\'ve created new Cocoa Touch File. Named it SwipingViewController.
Then try t
I solved it by manually writing the module name in the storyboard, under the class name. In my case it was the same name as the class, but it may differ.
i had a similar issue as well. I had a ViewController with a TableView in it, and the tableView's custom class was called 'ViewController'. I just deleted the custom class for the tableView and the error went away.
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.
For me: for table view cell in 'Indentity Inspector' unchecked 'Inherit Module From Target' and cleaned the project. It solved the problem and project run successfully
For me the problem was that the class was not part of the Target Membership
.
Just add the class to the target, and you should see it back on the interface builder.
In storyboard below the Custom Class field the module is set to None. Change that to your app module or just remove and enter class again, it should set to default like this: