gpt4 book ai didi

ios - 如何滚动到 UIScrollView 中的某个点

转载 作者:可可西里 更新时间:2023-11-01 17:08:11 24 4
gpt4 key购买 nike

下面我有一行代码滚动到 UIScrollView 中的某个点。然而,一旦它滚动到那里,它就不允许我向上滚动。

[scroller setContentOffset:CGPointMake(0,500) animated:NO];

任何帮助将不胜感激,谢谢。

最佳答案

您是否尝试过使用 UIScrollView 方法 scrollRectToVisible:这是一个例子

- (void)goToPage:(int)page animated:(BOOL)animated
{
CGRect frame;
frame.origin.x = self.scroller.frame.size.width * page;
frame.origin.y = 0;
frame.size = self.scroller.frame.size;
[self.scroller scrollRectToVisible:frame animated:animated];

// update the scroll view to the appropriate page
}

关于ios - 如何滚动到 UIScrollView 中的某个点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19337925/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com