プログラムで UIPopoverController を作成し、viewController、パススルー ビューなどを設定できます。
- (IBAction)showCustomPopoverButtonHandler:(id)sender {
if (self.colorPicker == nil) {
self.colorPicker = [[ColorPickerTableViewController alloc] initWithStyle:UITableViewStylePlain];
_colorPicker.delegate = self;
self.colorPickerPopover = [[UIPopoverController alloc] initWithContentViewController:_colorPicker];
}
[self.colorPickerPopover setPassthroughViews:@[self.containerView]];
[self.colorPickerPopover presentPopoverFromRect:self.showCustomPopoverButton.frame
inView:self.view
permittedArrowDirections:UIPopoverArrowDirectionRight
animated:YES];
}
ただし、ストーリーボード/シークを活用したいと思います。このアプローチを取ると、UIPopoverController インスタンスへのプログラム参照を取得する方法がわかりません。
誰でもこれを行う方法を知っていますか? 私は次のようなものを期待します
UIPopoverController* pvc = self.popoverController;
また、クラス タイプをチェックするために childViewControllers を列挙しました。
// Get references to child view controllers.
for(NSUInteger index = 0; index < self.childViewControllers.count; index++){
id obj = self.childViewControllers[index];
if([obj isKindOfClass:[UIPopoverController class]]){
self.menuPopoverController = self.childViewControllers[index];
}
}