I'm trying to present a navigation controller as a modal and I'm getting this warning:

ERROR:(null) is not a valid containment controller key path

Does anyone know what am I doing wrong? I just connected a segue from a button in another navigation controller to the designated navigation controller and it won't work and I get this warning.

link|improve this question
Please tag your question correctly, knowing what software and versions you are using will improve your chances of getting a good answer. – madd0 Nov 22 '11 at 9:23
iOS 5 sdk xcode 4.2, thanks – user1059449 Nov 22 '11 at 9:29
Did you solve this? I have exactly the same problem, only with a UIBarButtonItem. The button is obviously not null and IB allows me to drag from it to the UIViewController I want to seque to. The problem is not specific to a Modal transition and occurs with Push as well. – 1ndivisible Nov 23 '11 at 15:22
I believe its a bug on Xcode.. I changed back to Interface Builder until a stable version of Story Builder would come.. :( try opening a new project and see if it reoccurring. – user1059449 Nov 23 '11 at 19:17
please let me know if you solved it – user1059449 Nov 23 '11 at 19:17
show 1 more comment
feedback

2 Answers

This looks a bug in XCode note the sample "Utility App" displays this warning as well, but functions as expected.

link|improve this answer
Xcode is so buggered, you can't connect UITextFields to UIViewControllers if they're in prototype table cells either...! – lol Jan 24 at 11:50
feedback

Looks like you're passing a value which is actually holding nothing at all, to your navigation controller. I'd use NSLog to check the contents of the value being passed to the controller, and find out why it's null.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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