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.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答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.