1
我從代碼初始化我UIPopoverPresentationController
:UIPopoverPresentationController從故事板
ChoseOptionsViewController *contentController = [[ChoseOptionsViewController alloc] init];
contentController.modalPresentationStyle = UIModalPresentationPopover;
UIPopoverPresentationController *copvc = contentController.popoverPresentationController;
copvc.permittedArrowDirections = UIPopoverArrowDirectionAny;
copvc.sourceView = sender;
copvc.sourceRect = sender.bounds;
contentController.preferredContentSize = CGSizeMake(200, 200);
[self presentViewController:contentController animated:YES completion:nil];
和所有我得到的是一個空的200x200的觀點,雖然我在故事板創建一個視圖控制器,分配ChoseOptionsViewController
類,並拖動了一些UI元素。 請告訴我,當從代碼初始化彈出窗口時,如何從storyboard中獲得我的視圖。 在此先感謝。