Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a nib that contains a view that will be embedded in a TableViewCell. I've created the interface and implementation files, ResultCell.h and ResultCell.m. They're stock, out-of-the-box, no code changes.

I then create an empty XIB file, and drag a UIView onto it. Then I click File's Owner, and set the type to ResultCell. I click the view, and set its class to also be ResultCell.

Here are the problems I have:

  1. When using the Assistant Editor view (which I live in), the ResultCell.h file doesn't appear when I'm viewing the ResultCell.xib file. I have to force it to load by clicking on Automatic and selecting the file.
  2. When I drop a label in the view, and then Ctrl+Click and drag to the .h to create an outlet, I get this error message: "Could not insert new outlet connection: Could not find any information about the class named ResultCell."

I've tried creating and re-creating the view, and it's just not working, and I've started to lose my patience. Any help would be very, very appreciated!

share|improve this question
I just ran into this myself. Last night it worked and today nothing. I'll let you know if I find anything. – Tavison Jul 15 '11 at 6:43
For the record, multiple answers here have helped me over the last year. Recent versions of Xcode have improved things. – Tim Sullivan Jul 7 '12 at 16:45

17 Answers

up vote 48 down vote accepted

This might not work for your specific issue, but occasionally I get that error when working with newly created nibs. Deleting and recreating the nibs and View Controllers with the same names as before didn't resolve the issue, but relaunching Xcode did.

share|improve this answer
2  
indeed restart helps – neoneye Jul 22 '11 at 19:46
3  
+1 for restart - fixed me up but good – jtalarico Aug 13 '11 at 2:33
restart worked for me too – Sergio del Amo Sep 8 '11 at 8:35
+1 Worked for me too. Just restart XCode, and now I can CTRL+Drag to create new @propertys in my .h file. – Mike Gledhill Nov 16 '11 at 12:41
1  
+1 for restarting xcode – djblue2009 Feb 28 '12 at 22:33
show 4 more comments

I got into a similar state just today. It was very odd: I could attach any XIB (new or existing) to any already-existing ViewController class in the project, but I could not create a new ViewController and have it attach properly to any XIB. The "assistant" functionality didn't work, nor did the IB-to-headerfile-connection functionality.

Closing the project and re-opening did not fix it.
Quitting XCode and restarting did not fix it.
Creating a new project and testing the functionality worked fine, which led me to believe there was something corrupt in some cache somewhere.

My solution

  • Close your project.
  • Go to the ~/Library/Developer/XCode/DerivedData folder and REMOVE all subfolders there referencing the project you are working on.
  • Open your project in XCode. The problem should be fixed now.

Incidentally, just running a full clean did not seem to clear things up. I had to trash the derived data. I'm certain I got into this position because of git games I was playing, but I had no idea how to get out, because even switching back to earlier git revisions didn't help. (That was a big clue also that it was something untracked by the project itself.)

share|improve this answer
This fixed it for me - thank you so much! – Reno Mar 26 '12 at 1:59
Thankful to you, sir, I am! – codeBearer Apr 13 '12 at 18:06
4  
I just logged into SO on my Mac, just so I could upvote this answer! Totally worked for me. This was driving me crazy, as I am just learning to use XCode and it is already hard enough without ridiculous problems like these. :) Thank you!!! – Dave Apr 25 '12 at 23:05
1  
it even works without restarting xcode; just deleting derived data and rebuilding (on a iOS project) – nob Jun 28 '12 at 11:14
Yessss, thanks!! – lemontwist Aug 7 '12 at 23:22
show 8 more comments

I just had this problem and restarting Xcode did not fix it. I removed the class files from the project then added them back in and it started working.

share|improve this answer

I had the very same issue. And I tried :

  • Restarting Xcode
  • Deleting Derived Data
  • And many more

None of that worked. What worked for me was simply to :

  • Remove 'suspect' class files from Project (just remove References, huh?)
  • Re-add them to the project

And done!

share|improve this answer
2  
This worked for me, thank you! It was the first thing I tried, other than restarting XCode, since it seemed like the least amount of work and risk, and it worked great. – adriandz Jun 6 '12 at 16:51
1  
worked for me after restarting xcode and deleting derived data didnt – elad s Apr 17 at 8:29
1  
This one did the trick for me too. This may have something to do with refactoring the class names (which is what I just did before). – ecotax Apr 23 at 14:21

If restarting Xcode doesn't work of you, I have found that Toggling the new .m file out and back into the target membership works.

share|improve this answer

I encountered the same problem today. Restarting XCode did not fix the problem for me. I was able to get things back to normal by using "Delete" option of "Derived Data" of the project that can be found under Organizer. Organizer says that, "Derived Data includes index, build output and logs". I guess that either index or build output was causing this issue.

share|improve this answer

in XCode go to organizer, click project, click delete derived data... than clean the project

share|improve this answer
  1. ResultCell should be a subclass of UITableViewCell
  2. You should not drag a UIView onto the empty canvas, you should drag a UITableViewCell
  3. You should select the cell and change it to be your subclass
  4. The owner is most often a controller with an outlet to the cell

Everytime you want to load a new cell, call:

 [[NSBundle mainBundle] loadNibNamed:nibName 
                               owner:controllerWithOutletToCell 
                             options:nil]

after loading, use the cell, and set the ivar/outlet to nil, ready for the next load

there are other ways, but this is common

share|improve this answer
If I do that, I have exactly the same problem. The Assistant Editor doesn't display the .h when I'm viewing the nib, and the ctrl+drag doesn't create the outlet code, it displays the error. – Tim Sullivan Jul 15 '11 at 7:06
2  
Are you using 4.0.2 Xcode? You can manually set the assistant editor if it's misbehaving. I assume you've restarted the app to retest this problem (Xcode 4 often benefits from this). Sounds like it can't find the class files in the project, or something is misnamed - capitalization important. Is the project currently building? This is a very high level functionality that depends on the new compiler technology. – bshirley Jul 15 '11 at 14:55
Aw, eff me. Yeah, restarting Xcode and it immediately started working. 'Scuse me, I'm going to go fall on my sword now. – Tim Sullivan Jul 15 '11 at 15:26
=) … it's become part of my daily regimen – bshirley Jul 15 '11 at 16:02

This helped me out:

  1. from the project file Panel (left side) select the xib file that is broken.
  2. Click on the Files Owner icon from the editor view.
  3. from the properties Panel (right side) select the third tab (at the top)
  4. specify the "Custom Class"

If you do not see a "panel", please have a look at the top-right corner of the window and enable the proper "view" buttons. If you don't see the "view" buttons then click on the top-right most capsule button.

share|improve this answer

I noticed that .m file was moved inside en.lproj folder.

Just delete (reference only) the .m file from the Xcode and moved .m out of the en.lproj. Add it again.It will fix the issue.

Don't worry, you will get all your connections back.

share|improve this answer
I HAVE TRIED EVERYTHING HERE!! Laterally, Every Answer and it didn't work but this Answer DID!!!!! you have a talent! thanks a lot. – user1949873 Apr 21 at 1:04

Perhaps what worked for me is this.. (Xcode v4.5)

This did not work

I was trying to control drag into the interface definition of my .h

@interface SearchViewController : UIViewController

@end

This worked (may be that is how it was supposed to work, I did not know it before) See the open and close brackets. Control drag and drop after the closed bracket.

@interface SearchViewController : UIViewController
{
}

@end
share|improve this answer

If you copied files from other project just make sure you check the 'Add to targets' box

share|improve this answer

Renaming the class files may unlink them from the XIB. This answer helped me discover this:

Ctrl-Drag from button to method not working. Xcode/Interface Builder

Check that your custom class is set correctly in the Identity Inspector.

share|improve this answer

Similar symptom, but different cause.

Apparently I hit backspace when the focus was on the assistant view, because one of the standard file template comment lines went from // to / which results in the file not compiling.

Fixing the comment allowed the SDK to parse the file, recognize it as a UIViewController, and add in the outlet.

SO -- if you have this problem, do a build or analyze to see if there are errors that need fixing in your view controller .h file. THEN try the other solutions.

share|improve this answer

In my case it helped to make a "fake change" (just a space) to the according header file.

share|improve this answer

This might be an old topic but just in case anyone has the same issue in future, try deleting the associated .xib,.h and .m files and create new ones. For me, the UIViewController in my .h file wasn't purple and even backspacing and typing it didn't help.

share|improve this answer

Just put a line between the @implementation and the @synthesize. Most of the answers here have that in common. It worked for me

@implementation 

@synthesize
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.