我在视图控制器的tableview中有一个UITextfield,我在UIPopOverView中显示这个视图。我想知道如何才能知道关于IPAD屏幕的文本字段的位置......这样我就可以在Textfield editDidBegan上向上移动我的tableview
答案 0 :(得分:1)
尝试使用convertPoint:toView:或convertRect:toView:UIView的方法。
例如,要获取相对于窗口的textField的边界,请说
CGRect *bounds = [textField convertRect:textField.bounds toView:window];