I have overridden the tableView:indentationLevelForRowAtIndexPath method in my UITableViewController derived class as follows:
tableView:indentationLevelForRowAtIndexPath
UITableViewController
- (N
The indentation level is a property of the UITableViewCell itself. Try setting it on the cell when you create it, and return this value in tableView:indentationLevelForRowAtIndexPath:
UITableViewCell
tableView:indentationLevelForRowAtIndexPath: