In the MonoTouch simulator I am getting random crashes with the following diagnostic:
/tmp/mono-gdb-commands.FV1b8V:1: Error in sourced command file:
unable
Adding this in your FromTableController seems to fix the problem:
protected override void Dispose (bool disposing)
{
searchController.SearchResultsSource = null;
searchController.Delegate = null;
base.Dispose (disposing);
}
Solution was inspired by this: How can UISearchDisplayController autorelease cause crash in a different view controller?