我在iPad上有以下UIPopOverController。這是一個帶有通用故事板的iOS 8應用程序。在XCode中,我選擇了「作爲Popover存在」。UIPopOverController在呈現提醒控制器時收縮
每當這個視圖控制器提出了一個UIAlertController,出現這種情況:
的酥料餅縮小到一個奇怪的大小。該UIAlertController從彈出提出過爲:
var alert = UIAlertController(title: NSLocalizedString("Error", comment: "A simple error label"), message: NSLocalizedString("This account is already linked to the app.", comment: "A string describing the problem"), preferredStyle: .Alert)
var action = UIAlertAction(title: NSLocalizedString("OK", comment: "Simple string"), style: UIAlertActionStyle.Default, handler: { (action: UIAlertAction!) in
self.usernameTextField.becomeFirstResponder()
self.passwordTextField.text = ""
return
})
alert.addAction(action)
self.presentViewController(alert, animated: true, completion: nil)
我還沒有與視圖控制器中的所有約束玩過,所以我不知道爲什麼會這樣。什麼纔是防止這種情況發生的正確方法?
你有問題的解決方案嗎?因爲我有同樣的問題。 – iBapu 2014-10-13 13:51:09
不幸的是沒有。仍在尋找一個。 – 2014-10-15 15:21:53
顯然這個bug在iOS9.0中回報 – 2015-11-24 21:54:36