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.
SWRevealViewController make sidebar button static & make the rearView appear on top of the frontView
Asked
Active
Viewed 688 times
0
-
Yes I have solution for this kind of menu work – Nimit Parekh Jul 20 '15 at 06:59
-
Your application is into only portrait mode only? – Nimit Parekh Jul 20 '15 at 07:12
-
yes it is dude only portrait can u help me out – Nischal Hada Jul 20 '15 at 10:23
1 Answers
1
This kind of android drawer external and open source library called as a 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