SWRevealViewController使侧边栏按钮静态&使后视图显示在frontView

时间:2015-07-17 17:34:47

标签: ios storyboard objective-c-blocks swrevealviewcontroller

是否有任何方法可以使用Objective-C使后视图显示在frontView的顶部,如故事板中的下图所示。我想让前视图导航固定&使侧边栏按钮静止。

enter image description here

1 个答案:

答案 0 :(得分:1)

这种android抽屉外部和开源库称为CCKFNavDrawer

CCKFNavDrawer

使用以下代码。

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

然后实现委托方法

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

这可能会有所帮助。