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.
我想禁用自动滚动到顶部。我都试过了
tableview.scrollsToTop=NO; [tableview setScrollsToTop:NO];
但这不起作用。
谢谢
自动滚动代码驻留在 tableViewController 中,因此无法禁用自动滚动。您可以从 UIViewController 子类化并在其中使用 tableView,而不是从 UITableViewController 子类化。
如果你愿意使用 UITableViewController 本身,你可以重写 viewWillAppear 并且不要调用 [super viewWillAppear]。