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
In order to make the modal view transparent and make the transparency happen before the view appeared was to move self.view.superview.backgroundColor = [UIColor clearColor] from viewDidAppear to the following:
(void)viewWillLayoutSubviews{ [super viewWillLayoutSubviews];
self.view.superview.backgroundColor = [UIColor clearColor]; }