Reputation: 154
In the below image the viewController background is white and the pageViewController background colour is visible. How do I clear or make transparent the viewController background so that the violet is a standard background colour for all viewControllers.
Upvotes: 0
Views: 58
Reputation: 478
Rewrite init method and self.modalPresentationStyle = UIModalPresentationCustom;
, then set backgroudcolor clearColor.
Upvotes: 0