【发布时间】:2017-03-14 02:34:43
【问题描述】:
我正在尝试使用以下代码制作弹出菜单:
import UIKit
class BeobachtungViewController: UIViewController, UIPopoverPresentationControllerDelegate {
@IBAction func addClicked(_ sender: AnyObject) {
// get a reference to the view controller for the popover
let popController = UIStoryboard(name: "Personenakte", bundle: nil).instantiateViewController(withIdentifier: "popoverId")
// set the presentation style
popController.modalPresentationStyle = UIModalPresentationStyle.popover
// set up the popover presentation controller
popController.popoverPresentationController?.permittedArrowDirections = UIPopoverArrowDirection.up
popController.popoverPresentationController?.delegate = self
popController.popoverPresentationController?.sourceView = sender as! UIView // button
popController.popoverPresentationController?.sourceRect = sender.bounds
// present the popover
self.present(popController, animated: true, completion: nil)
}
// UIPopoverPresentationControllerDelegate method
func adaptivePresentationStyleForPresentationController(controller: UIPresentationController) -> UIModalPresentationStyle {
// Force popover style
return UIModalPresentationStyle.none
}
}
这适用于 iPad,但在 iPhone 上,弹出窗口会占据整个 iPhone 屏幕。我只想要一个带箭头的小窗口。我找到了几个教程,但没有一个对我有用。
【问题讨论】:
-
据我所知,这是苹果的预期行为,iphone上没有弹出窗口
-
你的代码对我有用....但是你的委托不正确