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 92e6fc87ad
commit 31e7fe1da1
+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