有没有办法从UIAlertAction
获得高度/宽度?
它似乎不是UIView
的子类,所以在UIAlertController
中是否有为它设置的常量?
是的,您可以获得UIAlertController的高度/宽度
present(alertController, animated: true, completion: nil)
DispatchQueue.main.asyncAfter(deadline: .now() + delay) {
alertController.view.frame.height
}
注意:在目前的UIAlertController You will get alert part frame only之后需要加一些延迟