2

我在我的内部有这个动画,viewController可以缩小并向下滑动我的菜单。

-(void)dismissMenuWithAnimation
{
    CGRect originalFrame = self.view.frame;
    [UIView animateWithDuration:2
                     animations:^{
                         self.view.frame = CGRectMake(originalFrame.origin.x,originalFrame.origin.y+originalFrame.size.height,originalFrame.size.width,10);
                     }
                     completion:^(BOOL finished){
                         [self.view removeFromSuperview];
                         self.view.frame = originalFrame;
                     }];
}

在同一内部viewController,我正在覆盖viewWillLayoutSubviews

-(void)viewWillLayoutSubviews
{
    [super viewWillLayoutSubviews];

    CGRect viewBounds = self.view.bounds;
    self.subView1.frame = CGRectMake(self.menuItemMidPosition,viewBounds.size.height-SUBVIEW1_HEIGHT,SUBVIEW1_WIDTH,SUBVIEW1_HEIGHT);

}

我有几个子视图,它们的框架是在这个viewWillLayoutSubviews方法中设置的。没有在 viewDidLoad 中设置它,因为那时框架仍然不正确。

问题是,当我关闭菜单时,首先调用动画块,并且不知何故 self.view.frame 立即设置为高度 10。(减少的帧)。当它到达 viewWillLayoutSubviews 时,边界高度为 10。这导致我的其他子视图显示不正确。

这似乎很愚蠢,但我不知道如何解决这个问题。有人可以帮忙吗?谢谢。

4

2 回答 2

4

我刚遇到和作者一样的问题。虽然这个问题很老,但我会发布我的解决方案,希望有人会像我一样碰到这个问题。

解决方案非常简单,完全类似于基于自动布局的动画:

UIView.animate(
  withDuration: 0.2,
  delay: 0,
  options: .curveEaseInOut,
  animations: {
    // This will launch viewWillLayoutSubviews!
    self.view.setNeedsLayout()
    self.view.layoutIfNeeded()
},
  completion: nil)

和 Objective-C 版本:

[UIView animateWithDuration:0.2
                    delay:0
                  options:UIViewAnimationOptionCurveEaseInOut
               animations:^{
                 // This will launch viewWillLayoutSubviews!
                 [self.view setNeedsLayout];
                 [self.view layoutIfNeeded];
               }
               completion:nil];

即使我们在 2017 年有自动布局引擎,我也喜欢完全程序化的布局。

于 2017-02-28T13:21:53.360 回答
0

我自己的解决方案是根本不使用 viewWillLayoutSubviews。我只是使用自动调整大小的蒙版来确保框架正确调整大小。

于 2012-11-02T02:39:37.003 回答