I\'ve a plain UITableView (not grouped) that I want to add a dropshadow to left and to the right.
You need to make sure clipsToBounds and masksToBounds are set to NO on the view and layer respectively.
clipsToBounds
masksToBounds
NO
self.tableView.clipsToBounds = NO; self.tableView.layer.masksToBounds = NO;