Facebook喜欢iPhone,iOS中的滑动抽屉?

时间:2014-04-17 08:16:49

标签: ios iphone

我想像Facebook for iOS一样制作滑动抽屉。我已尝试使用导航和片段,但它没有正常工作。我在右到左滑动的触摸事件中遇到了麻烦。 它没有用于左右滑动触摸的手势。 如果您对此有任何想法,请帮助我?

4 个答案:

答案 0 :(得分:3)

有很多库可以实现这一点。这里有一些给你

请查看以下链接。它可能会帮助你

  1. how-to-create-a-slide-out-navigation-like-facebook-and-path
  2. How To Add a Slide-out Sidebar Menu in Your Apps
  3. ECSlidingViewController
  4. iOS-Slide-Menu
  5. PKRevealController

答案 1 :(得分:1)

答案 2 :(得分:0)

答案 3 :(得分:0)

我经常使用this控件。很容易实现

    UIViewController * leftDrawer = [[UIViewController alloc] init];
UIViewController * center = [[UIViewController alloc] init];
UIViewController * rightDrawer = [[UIViewController alloc] init];

MMDrawerController * drawerController = [[MMDrawerController alloc]
                                       initWithCenterViewController:center
                                           leftDrawerViewController:leftDrawer
                                           rightDrawerViewController:rightDrawer];