I want to create a Navigation Based application with support of Size Classes
and iOS8
. App is using storyboard for all Layouts.
Some Clarifications :
I have already created an application with Single View Controller.
It already has storyboard.
If i add
Navigation Controller, then it displays black screen and placement of all the control displays wired.
If i remove
Navigation Controller
and Make myViewController
it works properly. But i want my app to be Navigation based.
Resulting Work Flow of Storyboard which i expect :
Navigation Controller->View Controller.
My Question
- How to create Navigation based app using MasterDetail Controller, where Master Should not be Table View?
Kindly provide a sample code or solutions. it would be much appreciated.
Thanks.
Finally, after spending couple of hours I figured out the problem.
Following constraints property with
NO
was removing impact of all the constraints, which i changed toYES
and all works perfectly.