Facebook.AppDelegate.TableViewSource.GetCell C# (CSharp) Method

GetCell() public method

public GetCell ( UITableView tableView, NSIndexPath indexPath ) : UITableViewCell
tableView UITableView
indexPath NSIndexPath
return UITableViewCell
            public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
            {
                UITableViewCell cell = tableView.DequeueReusableCell (kCellIdentifier);
                if (cell == null)
                {
                    cell = new UITableViewCell (UITableViewCellStyle.Subtitle, kCellIdentifier);
                }
                cell.TextLabel.Text = posts.data[indexPath.Row][email protected];
                cell.DetailTextLabel.Text = posts.data[indexPath.Row].message;
                cell.Accessory = UITableViewCellAccessory.DisclosureIndicator;
                return cell;
            }