问题
Hi,
I'm stuck! I can't see why viewWillAppear doesn't run in my code but viewDidLoad runs. If I understand it correctly viewDidLoad runs once on the first instance and viewWillAppear runs every time a view is added to the stack of views to display.
I see others have had this issue but some how their solutions of calling viewWillAppear directly causes my app to crash. Other solutions were related to Navigation Controller and pushingView's but thats not what i'm using either! What am I missing?
Thanks in advance for your help! :)
See below: View Controller #1 - Currently being displayed on screen
-(IBAction)someButtonPressed:(id)sender{
NSLog(@"FirstViewController - someButtonPressed");
SecondViewController *secondViewController = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
secondViewController.myLocation = self.myLocation;
secondViewController.myDatabase = self.myDatabase;
[self.view addSubview:secondViewController.view];
//[secondViewController viewWillAppear:YES];
}
SecondViewController:
- (void)viewWillAppear:(BOOL)animated {
NSLog(@"SecondViewController - viewWillAppear");
[super viewWillAppear:animated];
// updating ivars with data
}
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
NSLog(@"SecondViewController - viewDidLoad");
[super viewDidLoad];
}
If I understand it correctly viewDidLoad runs once on the first instance and viewWillAppear runs
every time a view is added to the stack of views to display.
回答:
-viewDidLoad
is called every time a UIViewController's view is loaded. That may be many times during
a single controller's life as the view may be unloaded to free up memory when it is not visible and reloaded,
triggering another call to -viewDidLoad
, when needed.
-viewWillAppear:
is called when a UIViewController's view becomes visible. However UIKit assumes that
UIViewController's views will fill their window. Nesting UIViewControllers' views is an example of abusing
UIViewControllers and will result in unexpected behavior. As you have seen.
See About Custom View Controllers in the View Controller Programming Guide for iOS:
Each custom view controller object you create is responsible for managing all of the views in a single
view hierarchy. In iPhone applications, the views in a view hierarchy traditionally cover the entire
screen, but in iPad applications they may cover only a portion of the screen. The one-to-one correspondence
between a view controller and the views in its view hierarchy is the key design consideration. You should
not use multiple custom view controllers to manage different portions of the same view hierarchy. Similarly,
you should not use a single custom view controller object to manage multiple screens worth of content.