滚动时更改视图大小

发布于 2024-10-30 07:56:25 字数 100 浏览 1 评论 0原文

我有一个滚动视图,其中有几个视图。我希望显示的视图使得滚动视图中间的视图的尺寸最大,而其他视图的尺寸从中间到末端不断减小。此外,当视图滚动时,应调整视图大小以遵循此行为。我该如何开始呢?

I have a scroll view with a couple of views in it. I want the views to be displayed such that the size of the view in the middle of the scrollview is the largest and the size of the other views keep decreasing from the middle to the ends. Also, when the view is scrolled, the views should be resized to follow this behavior. How do I start about with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟柳画桥 2024-11-06 07:56:25

您可以尝试让视图控制器适应 UIScrollViewDelegate 协议,然后使用 scrollViewDidScrollFunction

在该函数内,您可以检查滚动视图的内容偏移量并相应地调整图像大小。比如:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    CGPoint offset = scrollView.contentOffset; 

    // In here goes your resizing code
}

干杯

You could try having your view controller adapt the UIScrollViewDelegate protocol and then use the scrollViewDidScrollFunction.

Inside the function you can check the content offset of your scrollview and resize your images accordingly. Something like:

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
    CGPoint offset = scrollView.contentOffset; 

    // In here goes your resizing code
}

Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文