I have this problem with Navigation Bar in iOS 13. In this iOS version doesn't show correctly but in other version show normally.
This is the problem.
Anybody know what is the problem.
This is code of my AppDelegate. didFinishLaunchingWithOptions
(I don't use a storyboard)
InitViewController *viewController = [[InitViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:viewController];
navController.navigationBar.barStyle = UIBarStyleDefault;
navController.navigationBar.barTintColor = [UIColor grayColor];
navController.navigationBar.opaque = YES;
navController.navigationBar.translucent = NO;
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
self.window.rootViewController = navController;
[self.window makeKeyAndVisible];