I have problems updating my UITableView from an AsyncCallback but updating a label works fine? My code looks like this:
private void ProcessHttpResponse(IAsyncResult iar) {
// Do some work ...
InvokeOnMainThread(delegate {
myTable.Source = new MyTableViewSource(this.Controller,result.Messages);
txtInfo.Text += "Received request from: ";
});
}
Do I need to do something else with my table besides setting the source?