I have subclassed the UITableView control, and the style is grouped, but I do not need the cell separators. I tried setting my table view\'s separatorStyle to none, but it
In a grouped table view, setting separatorStyle doesn't do anything. If you want to hide it, just do the following:
separatorStyle
tableView.separatorColor = [UIColor clearColor];