问题: [tableView reloadData]后界面会上移.
问题原因: tableView的属性estimatedRowHeight默认=UITableViewAutomaticDimension. 系统自动计算高度会导致cell上移.
解决方法:
tableView.estimatedRowHeight=0;
tableView.estimatedSectionFooterHeight = 0;
tableView.estimatedSectionHeaderHeight = 0;
问题: [tableView reloadData]后界面会上移.
问题原因: tableView的属性estimatedRowHeight默认=UITableViewAutomaticDimension. 系统自动计算高度会导致cell上移.
解决方法:
tableView.estimatedRowHeight=0;
tableView.estimatedSectionFooterHeight = 0;
tableView.estimatedSectionHeaderHeight = 0;