0
ボタンがあり、クリックするとポップオーバービューが表示されます。画像に見られるように、画面の上中央に矢印が表示されます。 UIPopoverArrowDirectionをポップオーバービューのTOP RIGHTに配置する方法
@IBAction func notifyBtnTapped(sender: AnyObject) {
var vieww: notificationViewController = self.storyboard?.instantiateViewControllerWithIdentifier("popover") as! notificationViewController
vieww.modalPresentationStyle = .Popover
vieww.preferredContentSize = CGSizeMake(320, 602)
var vvv = vieww.popoverPresentationController
vvv?.delegate = self
vvv?.sourceView = self.view
vvv?.sourceRect = CGRect(x: 700, y: -510, width: 320, height: 602)
vvv?.permittedArrowDirections = [.Up]
presentViewController(vieww, animated: true, completion: nil)
}
しかし、どのようにポップオーバービューの右上にある矢印を配置するには?前もって感謝します。