2
Ich habe einen View-Controller, den ich als Popover darstellen möchte. Wie kann ich die Größe ändern?Ändern der Größe eines PopOver View Controllers
let carsViewController = CarsViewController()
carsViewController.modalPresentationStyle = .Popover
if let popoverPresentationController = a carsViewController.popoverPresentationController {
popoverPresentationController.permittedArrowDirections = .Up
popoverPresentationController.sourceView = carsButton
presentViewController(alertsViewController, animated: true, completion: nil)
}