我已经在 iPhone 上实现了一个 tableView,它可以使用 searchBar 进行搜索。我试图模仿第一次加载时在我的 tableView 中隐藏 searchBar 的效果。
当 tableView 包含多于一行时,该行为是预期的。但是,当只有一行时,它不会滚动到第一行。它显示了搜索栏。
- (void)viewDidLoad {
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]
atScrollPosition:UITableViewScrollPositionTop
animated:NO];
}