I am trying to push a ViewController programmatically into a navigation controller, And I'm using my storyboard to create it.
here is my code :
+ (void) pushViewController:(NSString *) identifier ForItems:(NSMutableArray *) items sender:(UIViewController *) sender {
GenericViewController *viewController = (GenericViewController *)[sender.storyboard instantiateViewControllerWithIdentifier:identifier];
viewController.items = [[NSMutableArray alloc] init];
[viewController.items removeAllObjects];
[viewController.items addObject:[[NSMutableArray alloc] init]];
[viewController.items[0] addObjectsFromArray:items];
[sender.navigationController pushViewController:viewController animated:YES];
}
In GenericViewController viewDidLoad
I'm using my items
. Thanks to some break points I've seen that GenericViewController viewDidLoad
juste after the instantiateViewControllerWithIdentifier
with an items
equal to nil.
I thought that MyViewController viewDidLoad
is called during the pushViewController
method.
Any idea why viewDidLoad
is called during instantiateViewControllerWithIdentifier
?
---Update :---
Here my viewDidLoad
- (void)viewDidLoad
{
for (MyItem *currentItem in self.items[0]) {
[Do Something]
}
[super viewDidLoad];
[...]
}
self.items
is nil. so nothing is done.
To anyone that might still have the same problem.
I had a similar situation and solved it by just calling loadViewIfNeeded().
let sb: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let controller = sb.instantiateViewControllerWithIdentifier("LoadingView") as! LoadingViewController
controller.loadViewIfNeeded()
I could then access everything inside the view.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With