I\'m trying to add a view to a UINavigationController with its top aligned with the navigation bar\'s bottom.
UINavigationController
I tried using constraints by adding the follo
Replace this
self.label = UILabel(frame: CGRect(x: 0, y: navigationBar.frame.height, width: 300, height: 100))
with
self.label = UILabel(frame: CGRect(x: 0, y: 64, width: 300, height: 100))
naviagtion bar & status bar together has a height of 64. Make it the y position