如何在弹出视图中获取与ipad屏幕相关的文本字段的位置

时间:2012-01-24 13:48:59

标签: iphone ios ipad uipopovercontroller

我在视图控制器的tableview中有一个UITextfield,我在UIPopOverView中显示这个视图。我想知道如何才能知道关于IPAD屏幕的文本字段的位置......这样我就可以在Textfield editDidBegan上向上移动我的tableview

1 个答案:

答案 0 :(得分:1)

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

例如,要获取相对于窗口的textField的边界,请说

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