我有这个类来创建日期源。如何UIViewController
使用此类创建一个?
public partial class JogosSource : UITableViewSource {
List<TableItem> tableItems;
string cellIdentifier = "TableCell";
public JogosSource (List<TableItem> items)
{
}
public override int RowsInSection (UITableView tableview, int section)
{
}
public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
{
}
public override UITableViewCell GetCell (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath)
{
}
}