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 reloadData] 的情况下清除表格视图内容;
无论您做什么,如果您不清除 TableView 的数据源,当用户滚动表格时,它将使用具有适当内容的新/重用单元格填充您的表格。您可以使用deleteRowsAtIndexPaths:withRowAnimation:TableView 方法,但同样,一旦删除单元格,它将尝试使用数据源中剩余的任何内容填充表格。因此,请确保先清除它。
deleteRowsAtIndexPaths:withRowAnimation: