Beispiel #1
0
        public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
        {
            contextCell = _tableView.DequeueReusableCell(identifier, indexPath) as ContextSideMenuCell;

            if (contextCell != null)
            {
                contextCell.BackgroundColor = UIColor.Clear;

                contextCell.MenuImageView.Image = _menuIcon[indexPath.Row];
                contextCell.MenuTitleLabel.Text = _menuTitle[indexPath.Row];
            }
            return(contextCell);
        }