UITableView.Source Property

Definition

A MonoTouch-specific feature that uses a UITableViewSource subclass to act as both Delegate or DataSource.

public UIKit.UITableViewSource Source { get; set; }
member this.Source : UIKit.UITableViewSource with get, set

Property Value

A class that can behave as both Delegate and DataSource for the table view.

Remarks

MonoTouch provides the UITableViewSource class as an alternative to implementing both UITableViewDataSource and UITableViewDelegate. If a subclass of UITableViewSource is created and assigned to this property, the DataSource and Delegate properties should not be set.

Applies to