Change childViewControllers to viewControllers

Signed-off-by: ismailgulek <gulekismail@gmail.com>
This commit is contained in:
ismailgulek
2020-04-09 13:32:45 +03:00
parent 3f472f89e9
commit 2b5a0942cf
+2 -2
View File
@@ -20,12 +20,12 @@
- (UIViewController *)childViewControllerForStatusBarStyle
{
return self.childViewControllers.firstObject;
return self.viewControllers.firstObject;
}
- (UIViewController *)childViewControllerForStatusBarHidden
{
return self.childViewControllers.firstObject;
return self.viewControllers.firstObject;
}
@end