Hey - I have the following method on my UITableView controller
public void RemoveEventFromList(Event evt){
if (_sessions != null) {
if (_sessions.Contains(evt)) {
_sessions.Remove(evt);
}
}
this.tableView.ReloadData();
}
which doesn't do anything!! - how do i manually remove the item from the list? this method is called from the next view in the nav tree (the details view) - so there is no selected row or anything like that.
this is the only thing holding me back from submitting the free version of my app to the appstore! so aaaaaaaany help really appreciated!
:)
w://