Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was under the impression that viewDidLoad will be called AFTER prepareForSegue finishes. This is even how Hegarty teaches his Stanford class (as recently as Feb 2013).

However, for the first time today, I have noticed that viewDidLoad was called BEFORE prepareForSegue was finished. Therefore, the properties that I was setting in prepareForSegue were not available to the destinationViewController within the destinations viewDidLoad method.

This seems contrary to expected behavior.

UPDATE

I just figured out what was going on. In my destinationViewController I had a custom setter that would reload the tableView each time the "model" was updated:

DestinationViewController    
- (void)setManagedObjectsArray:(NSArray *)managedObjectsArray
    {
        _managedObjectsArray = [managedObjectsArray copy];
        [self.tableView reloadData];
    }

It turns out, since the destinationViewController is a subclass of UITableViewController...calling 'self.tableView' forces the view to load. According to Apple's documentation, calling the view property of a view controller can force the view to load. The view of a UITableViewController is the tableView.

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/Reference/Reference.html

Therefore, in prepareForSegue the following line was forcing the view of the destinationViewController to load:

vc.managedObjectsArray = <custom method that returns an array>;

To fix the problem, I changed the custom setter of the destinationViewController's model to:

- (void)setManagedObjectsArray:(NSArray *)managedObjectsArray
    {
        _managedObjectsArray = [managedObjectsArray copy];
        if ([self isViewLoaded]) {
            [self.tableView reloadData];
        }
    }

This will only reload the tableView if the tableView is on screen. Thus not forcing the view to load during prepareForSegue.

If anyone objects to this process, please share your thoughts. Otherwise, I hope this prevents a long sleepless night for someone.

share|improve this question
1  
How do you know viewDidLoad was called? Can you share some code? – Spectravideo328 Feb 28 at 23:24
2  
I suspect prepareForSegue is in fact the function that (directly or indirectly) calls viewDidLoad. – H2CO3 Feb 28 at 23:26

1 Answer

Thanks for sharing, helped me figure my problem out.

In my case, the destinationViewController is a UITabBarController and modifying it's viewControllers Array triggered the viewDidLoad:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    UITabBarController *tabBarController = segue.destinationViewController;
    tabBarController.viewControllers = ...
    tabBarController.something = something;
}

in the viewDidLoad I needed the something attribute to be set, so I had to move it up:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    UITabBarController *tabBarController = segue.destinationViewController;
    tabBarController.something = something;
     tabBarController.viewControllers = ...
}
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.