The cell is not indenting according to is level.
I have configured indentation width inside cellForRowAtIndexPath.
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{
NSInteger theLevel=0;
if ( indexPath.row==1) {
theLevel=5;
}
return theLevel;
}
In the below image I changed frame frame of button and label according to its level.