1

我正在尝试重新创建在您选择地图上的位置时在 Google 地图应用程序中完成的动画。选择一个位置后,一个 UIView 从屏幕底部弹出。您可以将其拉起以显示带有其他内容的 UIScrollView。我很好奇他们是如何做到的,所以当父视图位于“顶部”时,您只能滚动 UIScrollView 内的内容。我知道您可以 setScrollEnabled:,但是他们以某种方式即时执行此操作,因此当您将手指向上滑动父视图“停靠”时,内部内容会滚动,当您向下滚动内容时,它会停止一次到达内容的顶部并开始将标题拉下。

有任何想法吗?

拉起时 在底部

4

1 回答 1

0

我通过执行以下操作解决了这个问题:创建一个动画,将滚动视图的父级从半可见位置移动到顶部......

- (void)setScrollViewExpanded:(BOOL)expanded {

    BOOL isExpanded = self.scrollViewContainer.frame.origin.y == 0.0;
    if (isExpanded == expanded) return;

    CGRect frame = self.scrollViewContainer.frame;
    CGRect newFrame;

    if (expanded) {
        newFrame = CGRectMake(0, 0, frame.size.width, self.view.frame.size.height);
        self.scrollView.delegate = nil;
        self.scrollViewContainer.frame = CGRectMake(0, frame.origin.y, frame.size.width, self.view.bounds.size.height);
        self.scrollView.delegate = self;
    } else {
        newFrame = CGRectMake(0, 300, frame.size.width, frame.size.height);
    }

    [UIView animateWithDuration:1 animations:^{
        self.scrollViewContainer.frame = newFrame;
    } completion:^(BOOL finished) {
        if (!expanded) {
            self.scrollView.delegate = nil;
            self.scrollViewContainer.frame = CGRectMake(0, 300, self.scrollViewContainer.bounds.size.width, self.view.bounds.size.height-300);
            self.scrollView.delegate = self;
        }
    }];
}

根据滚动视图相对于顶部的内容偏移量的变化触发动画...

-(void)scrollViewDidScroll:(UIScrollView *)scrollView {

    if (scrollView.contentOffset.y > 10.0) {
        // 10 is a little threshold so we won't trigger this on a scroll view
        // "bounce" at the top.  alternatively, you can set scrollView.bounces = NO
        [self setScrollViewExpanded:YES];
    } else if (scrollView.contentOffset.y < 0.0) {
        [self setScrollViewExpanded:NO];
    }
}

编辑:重新检查旧代码后,我更改了展开动画。由于在更改帧时对内容偏移的反馈,它需要稍微复杂一些。编辑在动画期间不会改变大小,只会改变原点。它在动画之前或之后更改大小并临时阻止委托消息。另请注意,滚动视图的自动调整大小掩码应设置为填充容器视图。

于 2013-05-08T04:52:38.277 回答