如何正确使用“sendSubviewToBack”方法?

时间:2012-08-18 10:06:04

标签: iphone objective-c ios uiview uiviewcontroller

我已经实现了幻灯片菜单,但我想要像facebook一样的滑动效果。 我遇到了关于stackoverflow的帖子:

iphone facebook side menu using objective c

我想在其中实施greenisus给出的解决方案(上调了15次),但我在实施时遇到了麻烦,Bot在评论中提出了同样的问题。 “@ greenisus我对如何将菜单发送到后面感到困惑?当我这样做时,它只显示一个黑色的侧面菜单。” 没有得到回答。

他的答案供参考:

真的很简单。首先,您需要创建一个位于可见的视图控制器下面的视图控制器。您可以将该视图发送到后面,如下所示:

[self.view sendSubviewToBack:menuViewController.view];

然后,在导航栏的左侧放置一个菜单按钮,并编写一个类似这样的处理程序:

- (void)menuButtonPressed:(id)sender {
    CGRect destination = self.navigationController.view.frame;
    if (destination.origin.x > 0) {
        destination.origin.x = 0;
    } else {
        destination.origin.x += 254.5;
    }
    [UIView animateWithDuration:0.25 animations:^{
        self.navigationController.view.frame = destination;        
    } completion:^(BOOL finished) {
        self.view.userInteractionEnabled = !(destination.origin.x > 0);
    }];
}

这是一般的想法。您可能必须更改代码以反映您的视图层次结构等。

只想知道何时必须使用以下方法,第二种方法很简单且工作正常,但不会在其下显示菜单视图。

[self.view sendSubviewToBack:menuViewController.view];

寻找一些指针或解决方案来正确运行上面的代码。

1 个答案:

答案 0 :(得分:2)

实际上你应该知道我们该怎么做。 只需将menuViewController.view添加为self.view的子视图即可。但是这将覆盖navigationController.view,所以你只需要[self.view sendSubviewToBack:menuViewController.view]。当你需要显示/隐藏menuViewController时,你需要使用方法 - (void)menuButtonPressed:(id)sender。

在HomeViewController中:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // be careful with the sequence of the code. If you firstly add the contentViewController and then add the 
    // menuViewController you need to [self.view sendSubviewToBack:self.menuViewController.view], else you don't
    // need to use sendSubviewToBack.
    self.menuViewController = [[MenuViewController alloc] init];
    self.contentViewController = [[ContentViewController alloc] init];
    [self.view addSubview:self.menuViewController.view];
    [self.view addSubview:self.contentViewController.view];
}

在ContentViewController中:

- (IBAction)showMenu:(id)sender
{
    CGRect destination = self.view.frame;
    if (destination.origin.x > 0) {
        destination.origin.x = 0;
    } else {
        destination.origin.x += 254.5;
    }
    [UIView animateWithDuration:0.25 animations:^{
        self.view.frame = destination;        
    } completion:^(BOOL finished) {
        //self.view.userInteractionEnabled = !(destination.origin.x > 0);
    }];
}