SCSlidingViewController icon indicating copy to clipboard operation
SCSlidingViewController copied to clipboard

NavigationController problem on iOS 6.1 with 4-inch screen

Open smilesh opened this issue 11 years ago • 2 comments

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.

smilesh avatar Dec 04 '13 17:12 smilesh

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).

simoncoulton avatar Dec 06 '13 00:12 simoncoulton

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);

smilesh avatar Dec 27 '13 16:12 smilesh