无法与UIView互动

时间:2014-01-12 12:35:17

标签: ios objective-c uiview uiviewcontroller uinavigationcontroller

我正在制作像Slide-To-Right Menu这样的Facebook。我的问题是我无法与后方UIView互动。这是我的代码:

@property (strong, nonatomic) UIViewController *leftSidebarViewController;


self.leftSidebarViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"left"];
[self.navigationController.view.superview insertSubview:self.leftSidebarViewController.view
                                           belowSubview:self.navigationController.view];
[self.leftSidebarViewController.view setUserInteractionEnabled:YES];

任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

如果您决定自己构建,请参阅本教程: http://www.raywenderlich.com/32054/how-to-create-a-slide-out-navigation-like-facebook-and-path

详细介绍了该过程,可以帮助您解决问题。由于时间限制,我选择使用本教程顶部提到的第三方库。

祝你好运!