gpt4 book ai didi

ios - UIScrollView 根据时间改变位置

转载 作者:行者123 更新时间:2023-11-28 21:37:27 25 4
gpt4 key购买 nike

我正在尝试实现 UIScrollView,但我想为 ScrollView 设置动画以每 10 秒显示一次 ScrollView 的不同 View 。对于我发现的这种方法可能有所帮助:

- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated;

但是你们有谁知道是否有一种方法可以根据时间实现 ScrollView 的更改?

最佳答案

你可以使用

[NSTimer scheduledTimerWithTimeInterval:10.0
target:self
selector:@selector(updateScrollPosition:)
userInfo:nil
repeats:YES];

然后在 updateScrollPosition 中,您可以相应地更新 scrollView 的偏移量。

-(void)updateScrollPosition{
[scrollView setContentOffset:contentOffset animated:YES];
// where contentOffset is the custom CGPoint
// where you want your scrollView to scroll after every 10 sec
}

关于ios - UIScrollView 根据时间改变位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33353969/

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