Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用滚动视图,并使用其中的按钮导航到新视图。问题是当我从新视图再次弹出(返回)到我的滚动视图时,滚动视图似乎重新定位到顶部,并且我看不到添加到滚动视图上半部分的控件。附上我的滚动视图的框架大小。
如果有人遇到同样的问题,我该如何解决?
您可以使用setContentOffset:animated设置滚动视图位置。像这样的东西:
setContentOffset:animated
[self.scrollView setContentOffset:CGPointMake(0, 180) animated:YES];