0

我的一个控制器的 UIScrollView 中有一个 UITextView。

问题是当您输入文本并到达滚动视图的底部时,最后一行文本(您正在输入的文本)实际上超出了滚动视图的底部并被隐藏。

任何帮助将非常感激。

scrollView.frame =  CGRectMake(15.0f, 20.0f+15.0f, self.view.frame.size.width-15.0f*2.0f, self.view.frame.size.height-keyboardBar.frame.size.height-keyboardBounds.size.height-20.0f-15.0f*3.0f);

postTextView.frame = CGRectMake(0.0f, 0.0f, scrollView.frame.size.width, scrollView.frame.size.height);

[self.view addSubview:scrollView];
[scrollView addSubview:postTextView];

`

4

1 回答 1

0

您需要设置滚动视图的内容大小,以便它知道如何滚动其子视图:

[scrollView setContentSize:postTextView.frame.size];

滚动视图的框架只是它在 self.view 上自己占用的空间。内容大小是所有滚动视图的子视图将在滚动视图内占据的大小。

于 2013-09-24T02:19:24.893 回答