コード例 #1
0
        public override UITableViewCell GetCell(UITableView tableView, Foundation.NSIndexPath indexPath)
        {
            TableViewCell cell = tableView.DequeueReusableCell(TableViewCell.Key) as TableViewCell ?? TableViewCell.Create();

            cell.BindData(arrMenuText[indexPath.Row], arrMenuIcon[indexPath.Row]);
            return(cell);
        }