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

Line ending issue with Mercurial or Visual Studio -

python - Received unregistered task using Celery with Django -

c# - Delving into the world of XML (Windows Phone) Error I dont understand (The ' ' character, hexadecimal value 0x20, cannot be included in a name.) -