vote up 1 vote down star
2

From what I understand of the SDK, this exception is raised when the bindings in IB are not proper. But in my case, the view is loaded fine for the first two times. I then move back from the view using the NavigationController.

The third time when I try to open the view, I get this exception. The fact that it opens correct the first two times, means the bindings are correct and the view is fine! But then why does it fail the third time?

Any pointers? Thanks.

I am calling -initWithNibName:bundle: to initialize the view which is created in IB. Not calling the -loadView method.

flag

Does initWithNib get called on the view? Are you calling loadView directly instead of lazy-loading it via the view property? Are you calling your supers in view, loadView and viewDidLoad? – rpetrich Dec 26 '08 at 7:35
You might want to use the term "connections" rather than "bindings." In Cocoa terminology, "bindings" has a specific meaning that isn't interchangeable with "connection." – Chris Hanson Dec 29 '08 at 8:23

4 Answers

vote up 1 vote down check

You may be running low on memory, which forces the system to send out low-memory messages to instantiated view controllers. The default implementation of -didReceiveMemoryWarning clears out the view member variable. In theory, then next time the view is required, it should be re-instantiated, but you may have overridden something that's preventing that.

link|flag
vote up 0 vote down

It seems that you have not bind the view to it's file owner.

For fixing this thing go open the xib which you are using in this ViewController. Right Click on your main view and then bind this view to the File Owener's view property.

link|flag
vote up 0 vote down

It is not getting garbage collected. AFAIK, there is no garbage collection in iPhone SDK and we need to dealloc stuff explicitly.

link|flag
This should be a comment on diclophis' answer, not an answer in its own right. Stack Overflow isn't a discussion forum, it is a Q&A resource. – Chris Hanson Dec 29 '08 at 8:24
vote up -1 vote down

The view object might be going out of scope, and getting garbage collected.

link|flag
There's no garbage collection on the iPhone platform (only the most recent version of the desktop objective-c runtime added it) – rpetrich Dec 26 '08 at 7:28

Your Answer

Get an OpenID
or

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