- reuseIdentifier
- A string identifying the cell type being requested.
- indexPath
- The specific cell being requested.
A UIKit.UITableViewCell associated with the identifier.
This is the preferred method to call for cell reuse, as it calls UITableViewSource.GetHeightForRow and returns a properly-sized UIKit.UITableViewCell.
This method must be preceded by cell registration using UITableView.RegisterClassForCellReuse or UITableView.RegisterNibForCellReuse. Otherwise, an NSInternalInconsistencyException exception will be raised at runtime.
The cell reuse cache is important for efficiency and application developers should use it for dynamic tables.