我们可以在 iphone os 4.0 中使用 UIKeyboardBoundsUserInfoKey 来代替
大家好,我在我的应用程序中使用此代码。
CGRect keyBounds = [(NSValue *)[[通知 userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] CGRectValue];
但 UIKeyboardBoundsUserInfoKey 在 iOS 4.0 中已被弃用
我
在 iOS 4.0 中使用 UIKeyboardFrameEndUserInfoKey 和 UIKeyboardFrameBeginUserInfoKey 但这些给出了不同的结果。
任何人都可以建议我为此做什么。
Hi all i am using this code in my application.
CGRect keyboardBounds = [(NSValue *)[[notification userInfo] objectForKey:UIKeyboardBoundsUserInfoKey] CGRectValue];
but UIKeyboardBoundsUserInfoKey is deprecated in iOS 4.0
i am using UIKeyboardFrameEndUserInfoKey and UIKeyboardFrameBeginUserInfoKey
in iOS 4.0 but these are giving different result.
can any one suggest me what to do for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我想出的一个解决方案,以及 Apple 开发人员的替代推荐。
Here is one solution that I came up with, along with an alternative recommendation from an Apple developer.