热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用计时器切换图像(SwiftUI)

我使用UIPageViewController来显示图像。我需要一个计时器,每5秒钟显示一

我使用UIPageViewController来显示图像。我需要一个计时器,每5秒钟显示一个接一个的图像。如何使用计时器在5秒后启动事件以移至下一张图片?

使用计时器切换图像(SwiftUI)


使用Timer.publish创建计时器实例字段,如下所示:

let images = [...] // Array of image names to show
@State var activeImageIndex = 0 // Index of the currently displayed image
let imageSwitchTimer = Timer.publish(every: 5,on: .main,in: .common)
.autoconnect()

然后使用任何视图的.onReceive()修饰符转到下一张图像:

Image(named: images[activeImageIndex])
.onReceive(imageSwitchTimer) { _ in
// Go to the next image. If this is the last image,go
// back to the image #0
self.activeImageIndex = (self.activeImageIndex + 1) % self.images.count
}

,

您还可以使用@State private var [..]。shuffled()

方法获得数组

然后将其放入计时器

onReceive方法用于您的计时器。
做饭


推荐阅读
author-avatar
不如藏拙_487
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有