私は次のコードを持っています:
PNRProfileViewController *vc = [[PNRProfileViewController alloc] initWithNibName:@"PNRProfileViewController" bundle:nil];
vc.delegate = self;
self.profileVC_ = vc;
UINavigationController *controller = [[UINavigationController alloc] initWithRootViewController:self.profileVC_];
AHLog(@"FRAME IS %@", NSStringFromCGRect(self.profileVC_.view.frame));
controller.view.frame = self.profileVC_.view.frame;
controller.view.autoresizingMask = self.profileVC_.view.autoresizingMask;
self.currentViewController_ = controller;
このコードを実行すると、取得したフレームの高さが毎回変化します。416と460が交互に表示されます。これがなぜなのかわかりません。どんな手掛かり?