1
是否有創建適合屏幕寬度的自定義alertController?ios swift 3 - UIAlertController width
我試過幾件事情問這個問題他們 一個是前:
let width:NSLayoutConstraint = NSLayoutConstraint(item: alertController.view, attribute: NSLayoutAttribute.width, relatedBy: NSLayoutRelation.equal, toItem: nil, attribute: NSLayoutAttribute.notAnAttribute, multiplier: 1, constant: view.bounds.width)
alertController.view.addConstraint(width)
但是這行代碼總是讓我alertController和屏幕之間的水平空間。
UIAlertViewController旨在通過文檔使用。你最好的選擇是通過UIViewController自定義視圖,這樣你可以根據自己的需要設置寬度以及其他配置。 – DrPatience