0

ECSlidingViewController我坚持使用源代码 [ https://github.com/edgecase/ECSlidingViewController ] 来实现 facebook 幻灯片菜单类型的视图以满足我的要求。

我的需要是:我有一个 loginScreen,然后是一个UITabBarController带有 5 个选项卡的。当我单击第二个选项卡时,我需要这个第二个选项卡 VC 作为中央 VC,UIBarButtonItem在导航栏的右侧有一个。当我点击UIBarButtonItem我需要出现 facebook 类型的滑动视图时。请让我知道如何整合它。这应该在情节提要中完成。

4

1 回答 1

1

您的第二个选项卡可以是对ECSlidingViewController. 您的视图控制器关系看起来像这样:

UITabBarController's second tab -> ECSlidingViewController
ECSlidingViewController's topViewController -> UINavigationController
ECSlidingViewController's underRightViewController -> a view controller your users will see when the top view is anchored to the left
UINavigationController's rootViewController -> some view controller your users will see as the second tab

您可以在导航控制器上设置右栏按钮项以将顶视图锚定到左侧。

于 2013-11-16T18:30:42.473 回答