After changing the name of the UIViewController, the controllers showing and I cannot connect the connection controllers to this class.
Find the code in which you are creating the controller instance. It should look something like this:
MyViewController *mvc = [[MyViewController alloc] initWithNibName:... bundle:...];
When you find this line, look at the values ββyou pass for the nib name and package. Most likely, you will need to change the name of the nib you are going through. Either you pass the wrong name, or pass nil . If in the first case, just correct the name. If you pass nil , just change this to display the actual .xib file name. (Normally nil used because the UIViewController will use the class name as the nib name if you pass zero, so nil is a convenient shortcut.)
Caleb
source share