0

当键盘出现在 iPhone 上时,我试图向上滚动文本框,我正在使用以下代码,但出现错误:

在对象类型“UITextField”上找不到属性“原点”

studentLoanTextBox.frame = CGRectMake(
    studentLoanTextBox.origin.x, 
    studentLoanTextBox.origin.y - 100.0, 
    studentLoanTextBox.frame.size.width, 
    studentLoanTextBox.frame.size.height
);
4

1 回答 1

5

origin是 的成员CGRect,您必须CGRect从您的视图中获得一个。看看 的frame属性UIView

更改所有出现的studentLoanTextBox.origintostudentLoanTextBox.frame.origin

于 2013-02-20T21:55:39.140 回答