Menu
  • HOME
  • TAGS

TableView with NO shadow

ios7,uiview,uitableview,mfslidemenu

I look more deep in the documentation and I found This - (void) configureSlideLayer:(CALayer *)layer { layer.shadowColor = [UIColor grayColor].CGColor; // Change to 0 layer.shadowOpacity = 1; layer.shadowOffset = CGSizeMake(0, 0); layer.masksToBounds = NO; layer.shadowPath =[UIBezierPath bezierPathWithRect:layer.bounds].CGPath; } ...

How to add right side Slide Menu iOS

ios,objective-c,amslidemenu,mfslidemenu

You have already did it for the left side, I am not sure what's the issue u are facing to implement the same for the right side. Simple put another button in the BangladeshViewController and add its action to the rightRevealToggle: and also add a new controller for the right...

Slide-Out Navigation Panel in ios from scratch

ios,objective-c,amslidemenu,mfslidemenu

you can use MMDrawcontroller and Pass LeftView, RightView and Centerview with Navigationcontroller. All three controllers are UIViewController. You can also add Left and Right View with NavigationController same as CenterView so you can push from left and right view. CenterVC *objCenter = [[CenterVC alloc] initWithNibName:@"CenterVC" bundle:nil]; LeftVC *objleftVC = [[LeftVC...