SCSlidingViewController
SCSlidingViewController copied to clipboard
NavigationController problem on iOS 6.1 with 4-inch screen
Thank you for your effort. It is really awesome!
I know you have a plan to test it on iOS 6.1. But I found an issue so that I tell you.
With iOS 6.1 with 4-inch screen, when I show the topViewController with NavigationController by clicking the button of menu, top is not really top on the screen. UIViewController is fine.
I guess you can check this issues with your testing.
Thank you for the bug report, and I’m glad you’re enjoying the control! I’ll add a fix for it this week :)
On Thursday, 5 December 2013 at 4:32 am, Sangho, Choi wrote:
Thank you for your effort. It is really awesome!
I know you have a plan to test it on iOS 6.1. But I found an issue so that I tell you.
With iOS 6.1 with 4-inch screen, when I show the topViewController with NavigationController by clicking the button of menu, top is not really top on the screen. UIViewController is fine. I guess you can check this issues with your testing.— Reply to this email directly or view it on GitHub (https://github.com/simoncoulton/SCSlidingViewController/issues/7).
I have solved this problem by force reset location of navigation bar with below code. I guess trying it is enough.
self.navigationController.navigationBar.frame = CGRectMake(0.0, 0.0, self.navigationController.navigationBar.frame.size.width, self.navigationController.navigationBar.frame.size.height);