iPadでUIAlertControllerのActionSheetが落ちる問題
UIAlertControllerのActionSheetをiPadで普通にやったら落ちる。
sourceViewとsourceRectを指定しなければいけない。
MyViewController.swift
class ViewController: UIViewController {
@IBAction func pushButton(sender: UIButton) {
let ac = UIAlertController(title: "hoge", message: "moge", preferredStyle: .ActionSheet)
let ok = UIAlertAction(title: "ok", style: .Default, handler: nil)
ac.addAction(ok)
ac.popoverPresentationController?.sourceView = view
ac.popoverPresentationController?.sourceRect = sender.frame
presentViewController(ac, animated: true, completion: nil)
}
}
sourceViewは表示するviewを指定して、
sourceRectはそのviewの中のどこからピヨっと表示するかを指定する。
Author And Source
この問題について(iPadでUIAlertControllerのActionSheetが落ちる問題), 我々は、より多くの情報をここで見つけました https://qiita.com/malt03/items/8937d9b7fddb29f5764a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .