- identifier
- A string identifying the cell type being requested.
A UIKit.UITableViewCell associated with the identifier, or null if there is no cells in the queue with that particular identifier.
The cell reuse cache is important for efficiency and application developers should use it for dynamic tables.
Application developers targeting iOS 6 and later should use UITableView.RegisterClassForCellReuse or UITableView.RegisterNibForCellReuse. Once a UIKit.UITableViewCell class is registered, calls to UITableView.DequeueReusableCell will return a newly-instantiated object as necessary, rather than returning null.
Application developers should prefer the use of UIKit.UITableView.DequeueReusableCell(Foundation.NSString,Foundation.NSIndexPath), which returns a UIKit.UITableViewCell that is properly sized for the index path.