I am transiting my project to iOS7. I am facing a strange problem related to the translucent navigation bar.
I have a view controller and it has a tableview as subv
@Christopher Pickslay solution in Swift 2:
override func viewDidLayoutSubviews() { super.viewDidLayoutSubviews() let topInset = topLayoutGuide.length inTableView.contentInset.top = topInset inTableView.contentOffset.y = -topInset inTableView.scrollIndicatorInsets.top = topInset }