0

Is there any way to make the rearView appear on top of the frontView as below image in storyboard using Objective-C. I want to make the Front View navigation Fixed & make sidebar button static.

enter image description here

Nischal Hada
  • 3,230
  • 3
  • 27
  • 57

1 Answers1

1

This kind of android drawer external and open source library called as a CCKFNavDrawer.

CCKFNavDrawer

For using this following code.

self.rootNav = (CCKFNavDrawer *)self.navigationController;
[self.rootNav setCCKFNavDrawerDelegate:self];

Then implement delegate method

- (void)CCKFNavDrawerSelection:(NSInteger)selectionIndex
{
  NSLog(@"%i", selectionIndex);
}

May this helps lot.

Nimit Parekh
  • 16,776
  • 8
  • 50
  • 72