im working with AMSlideMenu, and i did in the MainVC
// Enabling Deepnes on left menu
- (BOOL)deepnessForLeftMenu
{
return YES;
}
// Enabling Deepnes on right menu
- (BOOL)deepnessForRightMenu
{
return YES;
}
Normally a deepness effect will be in the left and right menu, but nothing happen .
Did anyone tried AMSlideMenu before and had same pb ?
Yes it is working. You just need to observe it. If
-deepnessForLeftMenuis enabled you can see that menu will be transform and it shows animation and scaling of left menu.Put a debugger check in
AMSlideMenuMainViewController.mclass for below method and you will see the differences.Also the
deepnessForLeftMenubool variable used in other two methods for the same classIf you set
NOfordeepnessForLeftMenuvariable. You will able to see that menu will show flat animation.