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.
谁能告诉我如何实现点击状态栏和表格视图应该滚动到顶部。我在该视图控制器中还有另一个滚动视图,用于某些不同的目的。
提前致谢
如果您在 viewcontroller 中有多个滚动视图,请将 setScrollsToTop 属性设置为 YES,以便在用户点击状态栏时滚动您想要滚动的滚动视图。并且还将所有其他滚动视图的该属性设置为 NO。如果只有一个scrollview/tableview,你甚至不需要这样做。它将自动设置。
[myScrollView setScrollsToTop:YES];
[otherScrollview setScrollsToTop:NO];