Xamarin.iOS UITableView,你如何强制更新单元格?

前端之家收集整理的这篇文章主要介绍了Xamarin.iOS UITableView,你如何强制更新单元格?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Xamarin.iOS,无法弄清楚如何更新单个单元格.在 WPF ListView中,我可以只进行绑定并让单元格的属性执行inotifypropertychanged并且它会通过绑定自动发生. Xamarin.iOS中是否有一些等效的功能?更新UITableView单元格而不是擦除它们并重新添加它们似乎非常麻烦.

更新单个细胞的最佳方法是什么?

解决方法

假设您的UITableView存储在“tableView”变量中:
NSIndexPath[] rowsToReload = new NSIndexPath[] {
    NSIndexPath.FromRowSection(1,0) // points to second row in the first section of the model
};
tableView.ReloadRows(rowsToReload,UITableViewCellRowAnimation.None);
原文链接:https://www.f2er.com/iOS/331218.html

猜你在找的iOS相关文章