I have created a custom cell for loading into a table. The interface is complete and now I am trying to link the xib and the class.
I have the split screen view open
In my case, #1 fixed the issue
I have the reported problem trying to add a new Watch target to an old project as I successfully did several times on blank projects following tutorials. I tried inserting the target an scheme and removing both the files, the targets and schemes, as well restarting Xcode and deleting the derived files many times. But each time I recreate the target and try to activate the Assistant Editor, it finds no correspondent file to the main storyboard, and if I manually select it and then try to drag a new outlet I get the error of the original poster. What else could it be? As a metter fo fact my error is quite different as you may see in the screenshot.
delete your custom cell(tableview cell) and add again with different name. It works.
This problem seems to be an Xcode bug which creeps up mostly when you replace a file with a new file of the same name. Xcode seems to keep a reference of the older file of the same name.
Anyhow, the way to fix this seems to be -
Clean the project
Click <Your Project> in Project Navigator view. Go to Compile Sources under Build Phases of the target for which you are building. Remove and add back the .m file which is giving you trouble.
Alternatively, in the File Inspector (Utilities view) of the NIB file, under Target Membership, uncheck and check back the target name.
Restart Xcode for good measure.
Of course, deleting and adding back the .m file alone should fix it too.
Steps 1. and 2. alone fixed it for me. Feel free to ask if any step needs expanding.
Cheers and happy coding :)
I had the same problem for a viewcontroller which was removed accidantly.I readded files to project but adding Outlets by draging with from xib file gave me the mentioned error.I cleaned the project and restarted XCode and everything worked fine again.
Just go to .m
file
remove
#import "calssName.h"
save file
add text again
#import "calssName.h"
save file