You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@umairsuraj Your simplest option is probably to use a subclass of your SSDataSources object (e.g. @interface MyIndexedDataSource : SSArrayDataSource) and implement any of those extra data source methods you like.
Following methods are missings:
return [[UILocalizedIndexedCollation currentCollation] sectionTitles][section];
}
return [[UILocalizedIndexedCollation currentCollation] sectionIndexTitles
];
}
sectionForSectionIndexTitle:(NSString *)title
atIndex:(NSInteger)index
{
return [[UILocalizedIndexedCollation currentCollation] sectionForSectionIndexTitleAtIndex:index];
}
And how can we make datasource to have indexing?
The text was updated successfully, but these errors were encountered: