コード例 #1
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            ProfielenTableViewCell cell;

            cell = tableView.DequeueReusableCell(ProfielenTableViewCell.Key) as ProfielenTableViewCell;
            if (cell == null)
            {
                cell = ProfielenTableViewCell.Create();
            }

            cell.Profiel = Profielen [indexPath.Row];

            //make sperator full width
            cell.PreservesSuperviewLayoutMargins = false;
            cell.SeparatorInset = UIEdgeInsets.Zero;
            cell.LayoutMargins  = UIEdgeInsets.Zero;

            cell.setData(check);

            return(cell);
        }
コード例 #2
0
 public MyBemCheckBoxDelegate(ProfielenTableViewCell cell)
 {
     this.cell = cell;
 }
コード例 #3
0
 public MyBemCheckBoxDelegate(ProfielenTableViewCell cell)
 {
     this.cell = cell;
 }