I have a Navigation Controller that contains a Parent UIViewController that supports all orientation. I want my Parent UIViewController to present its Child UIViewController that only supports Portrait orientation only. How can this be done in iOS 8?
I tried settings the supportedInterfaceOrientations to return UIInterfaceOrientationMaskPortrait only for my Child UIViewController, but it's not working.