如何获得键盘的高度? (迅速)

前端之家收集整理的这篇文章主要介绍了如何获得键盘的高度? (迅速)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
不同iOS设备上键盘的高度不同。有人知道如何以编程方式获得设备的键盘高度?谢谢。
在斯威夫特:

您可以通过订阅UIKeyboardWillShowNotification通知获得键盘高度。 (假设你想知道在显示之前会有什么高度)。

这样的事情

NSNotificationCenter.defaultCenter().addObserver(self,selector: "keyboardWillShow:",name: UIKeyboardWillShowNotification,object: nil)

那么你可以在这样的功能中访问高度:

func keyboardWillShow(notification:NSNotification) {
    let userInfo:NSDictionary = notification.userInfo!
    let keyboardFrame:NSValue = userInfo.valueForKey(UIKeyboardFrameEndUserInfoKey) as! NSValue
    let keyboardRectangle = keyboardFrame.CGRectValue()
    let keyboardHeight = keyboardRectangle.height
}

猜你在找的Swift相关文章