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
Post a Comment