ここで2つのことを達成したい
1)View Controllerを押すと、ボトムバーを非表示にします
2) 画面の高さ全体をカバーするように、View Controller の高さ全体を表示します。
次のように私のコード:
DMUserProfileViewController *upvc = [[DMUserProfileViewController alloc]initWithNickname:[UserInfo sharedUserInfo].getNickname];
upvc.view.frame = CGRectMake(0, 0, self.frame.size.width, 431);
upvc.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:upvc animated:YES];
ただし、以下に示すように、フレームの設定は結果に影響を与えないようです。(viewcontrollerの下の空白スペース)。画面全体を覆うようにビューの高さを増やすにはどうすればよいですか?