如何获取 popoverview 中 txtfield 相对于 ipad 屏幕的位置

发布于 2024-12-28 11:27:04 字数 134 浏览 1 评论 0原文

我在视图控制器的表视图中有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜无邪 2025-01-04 11:27:04

尝试使用UIView的convertPoint:toView:或convertRect:toView:方法。

例如,要获取文本字段相对于窗口的边界,例如

CGRect *bounds = [textField convertRect:textField.bounds toView:window];

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

CGRect *bounds = [textField convertRect:textField.bounds toView:window];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文