日付ソースを作成するためにこのクラスがあります。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)
{
}
}