In-Callステータスバーが表示されたときに正しくサイズ変更するUIViewControllerがあります。さらに、これは、自身も正しくサイズ変更する子UIViewControllerを提供します。ただし、子VCを提示して、コールインステータスバーを表示すると、子コールを外した後、親VCは、インコールバーが表示されているようなサイズになりません。ステータスバーを非表示にして再表示すると、親のサイズが正しく変更されます。子を解雇するときに、親VCがすでに正しくサイズ調整されるようにするにはどうすればよいですか?In Call Status Barで親UIViewControllerのサイズが変更されない
例:
Parent.m
[self.view addSubview:self.webView];
self.webView.autoresizesSubviews = YES;
//The webview resizes correctly when in-call status bar shows
self.childViewController = [[Child alloc]init];
//present child
[self presentViewController:self.childViewController animated:YES completion:nil];
//In-call status bar shows (child resizes correctly)
[self.childViewController dismissViewControllerAnimated:YES completion:nil];
//View is still sized as if in-call status bar is not shown
Child.m
self.view.autoresizesSubviews = YES;
[self.view setAutoresizingMask:(UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth)];
//The view resizes correctly when in-call status bar shows
質問レビュー:問題を示すコードの簡略化されたバージョンを追加します。 –
@RichLinnellが追加されました。ありがとう! – Cowabunghole