gpt4 book ai didi

iphone - 如何使用计时器自动滚动 UIScrollView?

转载 作者:行者123 更新时间:2023-12-03 18:20:37 35 4
gpt4 key购买 nike

我有一个 UIScrollView 来显示图像。我需要一个计时器,每隔 5 秒一次接着一次地显示图像。如何使用计时器启动 UIScrollView 事件在 5 秒后移动到下一张图像?

最佳答案

将变量 int h 添加到您的界面,并将 yourScrollView 作为属性。然后:

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

- (void) onTimer {

// Updates the variable h, adding 100 (put your own value here!)
h += 100;

//This makes the scrollView scroll to the desired position
yourScrollView.contentOffset = CGPointMake(0, h);

}

关于iphone - 如何使用计时器自动滚动 UIScrollView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3694411/

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