Scarnet
Scarnet

Reputation: 738

Remove Section Index In Table view Xamarin.iOS

I simply want to have a grouped table view without drawing the side section index part that gets drawn automatically.

I could only find

tblProducts.SectionIndexMinimumDisplayRowCount = 1000000000;

but this only doesn't draw the section index but it still reserves it's space.

Upvotes: 0

Views: 102

Answers (1)

ColeX
ColeX

Reputation: 14475

See UITableViewSource.SectionIndexTitles Method

The method above returns an array of titles to be displayed as an index on the table view, you just need to return null, the SectionIndex will never appear.

public override String[] SectionIndexTitles (UITableView tableView)
{
    return null;
}

Upvotes: 1

Related Questions