Child View frame change when pushed again from parent view controller

Multi tool use
Child View frame change when pushed again from parent view controller
I have added a viewcontroller's view as a child view in an another viewcontroller. The child view controller has a tableview. Child view controller can be pushed more than once while click on didSelectRow
to show updated data in same viewcontroller which is working fine. But when I push the child view controller from my parent view the child view changes its frame to original viewcontroller frame and leave the parent view. So I want to make sure that it will always stay in the frame of its parent view and push and pop will occured only inside parent view.
didSelectRow
Adding child view:
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Home" bundle:nil];
ChildViewController *vc = [sb instantiateViewControllerWithIdentifier:@"ChildViewController"];
[self addChildViewController:vc];
[vc.view setFrame:self.tableFilters.frame];
[self.viewContainer addSubview:vc.view];
[vc didMoveToParentViewController:self];
Code written in Child viewcontroller's didSelctRow method:
ChildViewController *newMyTableVC = [self.storyboard instantiateViewControllerWithIdentifier:@"ChildViewController"];
newMyTableVC.delegate = self;
[self.tableView reloadData];
[self.navigationController pushViewController:newMyTableVC animated:YES];
viewContainer
tableFilters
Is
ChildViewController
a subclass of UINavigationController
?– André Slotta
Jun 30 at 10:06
ChildViewController
UINavigationController
No it is subclass of UIViewController
– Aman Pratap
Jun 30 at 11:15
1 Answer
1
Since your child view controller is not embedded in an instance of UINavigationController
self.navigationController
points to its parent's navigation controller. That is why pushing and popping happens in the parent view controller.
UINavigationController
self.navigationController
To make pushing and popping work in your child view controller you have to embed the child view controller in a UINavigationController
:
UINavigationController
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Home" bundle:nil];
ChildViewController *vc = [sb instantiateViewControllerWithIdentifier:@"ChildViewController"];
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];
[self addChildViewController:nc];
[nc.view setFrame:self.tableFilters.frame];
[self.viewContainer addSubview:nc.view];
[nc didMoveToParentViewController:self];
How would I not think about that. That is brilliant, everything is sorted in objective c.
– Aman Pratap
Jun 30 at 17:02
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Can you show some screenshots of your setup? I am confused about the fact that you add the child view to
viewContainer
but set its frame totableFilters
frame.– André Slotta
Jun 30 at 9:54