AUv3Host.ViewController.RowsInSection C# (CSharp) Method

RowsInSection() private method

private RowsInSection ( UITableView tableView, nint section ) : nint
tableView UITableView
section nint
return nint
		public nint RowsInSection (UITableView tableView, nint section)
		{
			if (tableView == AudioUnitTableView)
				return playEngine.AvailableEffects.Length + 1;

			return (tableView == PresetTableView) ? playEngine.PresetList.Length : 0;
		}