raweng / stack-scroll-view

Stack Scroll View Panel like Twitter Ipad app for iOS developers [iPad]
http://www.raweng.com
Other
379 stars 145 forks source link

Orientation Bug #31

Open martinobonfiglioli opened 12 years ago

martinobonfiglioli commented 12 years ago

Firstly thank you for this amazing component!

I've found a bug:

1 - create four different panel. 2 - swipe back e forward between panel. 3 - rotate the device and many times the views will not show correctly.

When you solve this bug, that component will be perfect!

Martino.

soymigue commented 12 years ago

Hi,

I am not sure if the problem described is the same one I had. When opening a panel in Landscape mode, the shadow would appear to be short. I changed the following line from this:

UIViewWithShadow* verticalLineView = [[[UIViewWithShadow alloc] initWithFrame:CGRectMake(-40, 0, 40 , self.view.frame.size.height)] autorelease];

to this:

UIViewWithShadow* verticalLineView = [[[UIViewWithShadow alloc] initWithFrame:CGRectMake(-40, 0, 40 , controller.view.frame.size.height)] autorelease];

It seems to do the trick.