It's funny, I've got it working properly in one of the child table views but for some reason it isn't showing up in my main menuTableView.
This is how I've set it up in Storyboard:
And this is the code that I'm working with for shadow additions:
self.menuTableView.layer.shadowColor = [UIColor blackColor].CGColor;
self.menuTableView.layer.shadowOffset = CGSizeMake(0.0f, 0.0f);
self.menuTableView.layer.shadowOpacity = 0.8;
self.menuTableView.layer.shadowRadius = 1.5f;
self.menuTableView.clipsToBounds = NO;
self.menuTableView.layer.masksToBounds = NO;
I basically want to add a drop shadow to the bottom and top of the tableview. Help would be appreciated! Thank you!
UPDATED: Please note that although I know that tons of questions similar to mine exist, most of them just forgot to set the clipsToBounds and masksToBounds to NO. Where as I already have that, and yet it works on one tableview but not my main one, which no question on here can answer, and I haven't been able to find anything on it since everything seems to be correctly coded. Thank you.