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.
我想做的是在滚动完成时只显示完整的单元格。换句话说,如果用户滚动并显示部分单元格,则自动移动内容以使部分单元格完全可见。
原因是每个单元格的内容取决于它所在的可见单元格。
谢谢,瑞克
通过在 UITableViewDelegate 子类中覆盖 DecelerationEnded,您可以在滚动完成时获取可见单元格:
public override void DecelerationEnded (UIScrollView scrollView) { UITableViewCell[] visibleCells = tableVC.TableView.VisibleCells; ... }