I have a modal view popping up in my iPad app and for some reason it has white, rounded corners.
It might be worth noting I built this model view in my storyboard, n
That's weird. Try self.view.layer.masksToBounds = YES; too if that works. You'll probably lose your view's shadows though.
self.view.layer.masksToBounds = YES;
Come to think of it, that white thing probably comes from the view below your navigation bar.