滚动文本框上的视图单击

时间:2013-01-03 04:40:46

标签: iphone xcode4.5

我的scrollview上有一些文本框。当用户点击文本框时,滚动视图应自动滚动。所以我可以避免一些文本框隐藏在虚拟键盘后面。有人请帮忙解决这个问题。

1 个答案:

答案 0 :(得分:-1)

Try below code my friend....

- (BOOL)textFieldShouldEndEditing:(UITextField *)textField
{
 scroll.contentOffset=CGPointMake(0,25);//you can set position of y(25 here) anything as per your confort and how much do you want to scroll.

}

让我知道它的工作与否!!!

快乐编码!!!!