Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. launch the app (check)
  2. hit the search tab, this puts the user in the search vc (check)
  3. enter a search term, get several results from the web api (check)
  4. select a movie from the table of results, this puts the user in the detail vc (check)
  5. hit the save movie button, the movie is saved in a list managed by the list vc (check)
  6. hit the list tab, this puts the user in the list vc (check)
  7. so far everything is working exactly as planned...
  8. 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?

  1. 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
  2. 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.

share|improve this question
You should post some code. The method that configures the detail vc's view at the very least. – T.J. Feb 29 '12 at 5:16

2 Answers

You can re use view in storyboards. Reusable detail view is quite a common case. You should post some code, to help us. However, in storyboards all is done in prepareForSegue method, be sure you pass the correct values from there into the detail vc. Also the detail view start to know about IBOutlet in viewDidLoad or viewWillAppear, before it's too early to set value in outlet. If for example you are setting the detail vc @property from the list VC this is not working, I suppose.

share|improve this answer
I figured out the problem. I was wrong about a few things. The issue is related to one of your warnings. It was the timing of when I was configuring the detail VC's view: I was trying to configure UI objects after the detail VC was instantiated but before the detail VC's view was loaded. I must remember that instantiating a VC is not the same as loading its view into memory; these are two separate processes. Thanks. – bilobatum Feb 29 '12 at 20:30
If you are working with stroryboards I think that sooner or later you will encounter this also: stackoverflow.com/questions/8838160/… – Leonardo Mar 1 '12 at 6:47
Interesting problem. I think it's related to the problem I was having above. – bilobatum Mar 1 '12 at 17:45

I figured out the problem. I was wrong about a few things. The issue is related to one of Leonardo's warnings. It was the timing of when I was configuring the detail VC's view: I was trying to configure UI objects after the detail VC was instantiated but before the detail VC's view was loaded. I must remember that instantiating a VC is not the same as loading its view into memory; these are two separate processes. Thanks

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.