Xamarin.iOS UITableView, how do you force a cell to update? -


i using xamarin.ios , cannot figure out how update single cell. in wpf listview, can binding , have cell's properties inotifypropertychanged , automatically happens through binding. there equivalent functionality in xamarin.ios? seems super cumbersome update uitableview cells without wiping them out , re-adding them..

what best way update individual cells?

assuming uitableview stored in "tableview" variable:

nsindexpath[] rowstoreload = new nsindexpath[] {     nsindexpath.fromrowsection(1, 0) // points second row in first section of model }; tableview.reloadrows(rowstoreload, uitableviewcellrowanimation.none); 

Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -