Hi All
At the moment I'm trying to implement a custom listview renderer I've skipped some of the internal classes and completely implemented my own sources. I do have another suggestion in regards to opening up the platform for extension.
It would be a common requirement that developers would like to tap into the existing infrastructure for rendering cells. eg we need to be able to do this:
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
Cell cellForPath = this.GetCellForPath (indexPath);
CellRenderer cellRenderer = (CellRenderer)Registrar.Registered.GetHandler (cellForPath.GetType ());
return cellRenderer.GetCell (cellForPath, tableView);
}
Thanks
Michael