I've tried to google this question, but didn't find what i'm looking for.
Im looking for some code examples for xamarin ios and very often meet constructions like this:
[cell setIndentationLevel:SOME_NUMBER];
[cell setIndentationWidth:SOME_OTHER_NUMBER];
And like this:
-(NSInteger)tableView:(UITableView *)tableView
indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath
{
return intOffset;
}
How to use them? And can they be used in Xamarin studio for ios apps?