如何获取 popoverview 中 txtfield 相对于 ipad 屏幕的位置
我在视图控制器的表视图中有一个 UITextfield,并且在 UIPopOverView 中显示此视图。我想知道如何才能知道文本字段相对于 IPAD 屏幕的位置...以便我可以在 TextfieldEditingDidBegan 上向上移动我的表格视图
I have a UITextfield in a tableview in a view controller, and I am displaying this view in a UIPopOverView. I wanted to know how can I get to know the position of the textfield with respect to IPAD screen...so that i can move my tableview upwards on Textfield editingDidBegan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用UIView的convertPoint:toView:或convertRect:toView:方法。
例如,要获取文本字段相对于窗口的边界,例如
Try using the convertPoint:toView: or convertRect:toView: methods of UIView.
So for example, to get the textField's bounds relative to the window, say