found next strange bug in iOS 13 presenting modally over fullscreen viewcontroller. Initially it was broken, it was opened in not a full screen so I tried next method described on this link Now it loads and awaits touch to anywhere on the screen. Currently this is Parent viewController, which should modally show TermsVC
mainView.hidden = YES;
IDTermsViewController *termsVC = [[self storyboard] instantiateViewControllerWithIdentifier:@"IDTermsViewController"];
termsVC.delegate = self;
if (@available(iOS 13.0, *)) {
[termsVC setModalPresentationStyle: UIModalPresentationFullScreen];
}
[self presentViewController:termsVC animated:YES completion:nil];
Currently after presenting this termsVC, i've got the next state like on the screenshot below. If i do any action - shake the phone, make screenshot, tap anywhere - TermsVC will appear!