MCPanelViewController icon indicating copy to clipboard operation
MCPanelViewController copied to clipboard

Limit size on gesture

Open mattiaaccornero opened this issue 10 years ago • 2 comments

Hi there, there is a method to stop gesture after size content is reached? Or in case, disable gesture in a choosed direction?

Thanks in advance!

mattiaaccornero avatar Oct 09 '14 14:10 mattiaaccornero

I have the same problem. On iPad if a user continues to scroll, size of the menu grows.

abraxascorner avatar Jul 13 '15 14:07 abraxascorner

@beat84

if (newWidth <= self.maxWidth) {
                [self layoutSubviewsToWidth:newWidth];
            }

I uncommented this two lines. It has some delay in animation, but the menu is not dragged outside of bounds.

abraxascorner avatar Jul 13 '15 14:07 abraxascorner