selva balasubramanian
selva balasubramanian

Reputation: 154

How to set viewController bg transparent so that bg colour of the pageViewController remains standard background for all viewcontrollers?

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.

the image

Upvotes: 0

Views: 58

Answers (1)

Andy Darwin
Andy Darwin

Reputation: 478

Rewrite init method and self.modalPresentationStyle = UIModalPresentationCustom;, then set backgroudcolor clearColor.

Upvotes: 0

Related Questions