私はios開発の新人です。ナビゲーションアイテムをタップしている間、ナビゲーションアイテムを持つメインviewControllerがあります。ポップオーバービューコントローラーは正常に表示され、正確なコンテンツサイズをポップオーバー(320,845)のビューで取得します。変更する必要があります。
UIBarButtonItem *btn = (UIBarButtonItem *)sender;
Agamam *agamamView = [[Agamam alloc] initWithNibName:@"Agamam" bundle:nil];
agamamView.delegate=self;
agamamView.contentSizeForViewInPopover =CGSizeMake(agamamView.view.frame.size.width, agamamView.view.frame.size.height);
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:agamamView];
popAgamamView = [[UIPopoverController alloc] initWithContentViewController:navController];
[popAgamamView presentPopoverFromBarButtonItem:btn permittedArrowDirections:YES animated:YES];