AutoWait.MediaSelectionTableViewController.GetCell C# (CSharp) Метод

GetCell() публичный Метод

public GetCell ( UITableView tableView, NSIndexPath indexPath ) : UITableViewCell
tableView UITableView
indexPath NSIndexPath
Результат UITableViewCell
		public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
		{
			var cell = tableView.DequeueReusableCell ("Media", indexPath);
			cell.TextLabel.Text = mediaItems [indexPath.Row].Name;

			return cell;
		}