I am having trouble re-using a custom view controller created in storyboard (Xcode 4.2.1, using ARC). Unfortunately, I can't post a screenshot of my storyboard layout because I'm new to Stack Overflow. But I can give you a link:
http://webpages.charter.net/bilobatum/storyboardmain.htm
Let me explain the flow of my storyboard layout because the image is way too small to make out the details:
- the initial view controller on the far left is a tab bar controller with two tabs
- the tab bar controller has two relationships: each relationship is with a navigation controller
- in turn, each navigation controller has a relationship with a custom table view controller: one controller searches a movie database, the other shows a list of saved movies; so let's call them the search vc and the list vc, respectively
- in turn, the search vc and the list vc segue (i.e., a push segue) to a single custom view controller that shows the details of a selected movie; so let's call it the detail vc
Here's a test run:
- launch the app (check)
- hit the search tab, this puts the user in the search vc (check)
- enter a search term, get several results from the web api (check)
- select a movie from the table of results, this puts the user in the detail vc (check)
- hit the save movie button, the movie is saved in a list managed by the list vc (check)
- hit the list tab, this puts the user in the list vc (check)
- so far everything is working exactly as planned...
- while in the list vc, select a movie from the table, this again puts the user in the detail vc, BUT the movie information is not displaying (error!)
Step 8 is a silent error; no exception is thrown and I can go back and do another search and continue to add movies to the list. Logging proves to me that the detail vc has the information it needs to display the movie information; yet, the detail vc displays empty labels and webviews. To be perfectly clear, logging shows that the method that configures the detail vc's view has the right information: it just doesn't write this information to the view. The same detail vc worked perfectly in step 4. What's going on?
Can't I re-use the detail vc? I want to use the same view controller in two different places and update the content. Perhaps I am not thinking in storyboard. Maybe my setup only makes sense with separate, unconnected nib files (you know, the stuff we used before storyboard and segues).
I think just writing about this problem has helped me. In my app, all the view controllers are instantiated by Xcode auto-magically when the app launches because they are all embedded in a tab bar controller (according to Apple documentation). Therefore, I suppose I only get one instance of that detail vc. If I'm right, what are my options?
- of course, I could make another copy of the detail vc in storyboard; the list vc and search vc would each get their own detail vc
- would creating the detail vc modally solve the problem? But detail vc's aren't normally modal, are they?
I'm anxious to hear what you think.
Thank you.