作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 watch 套件中使用 animateImageWithImages 进行动画处理,但没有属性可以检查动画是否完成,这与 iPhone 不同,我们可以将其放在 block 中或可以使用 isAnimating 属性进行检查。我们如何知道 watch 套件中的动画何时停止?
最佳答案
我正在使用 WKInterfaceImage 来制作动画。例如,您有一个 WKInterfaceImage,其动画持续时间为 2 秒。所以你可以使用延迟函数在 2 秒后开始和停止动画,如下所示:
self.animateImage.startAnimating()//Start animate the image
//delay function in 2 seconds, after 2 seconds and we will stop the animated image
dispatch_after(dispatch_time(
DISPATCH_TIME_NOW,
Int64(2 * Double(NSEC_PER_SEC))
), dispatch_get_main_queue(), { () -> Void in
self.animateImage.stopAnimating()
//you can write some function in here after finish the anim
})
关于ios - 在 Apple Watch 中使用 animateImageWithImages 时何时停止动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28265380/
我在 watch 套件中使用 animateImageWithImages 进行动画处理,但没有属性可以检查动画是否完成,这与 iPhone 不同,我们可以将其放在 block 中或可以使用 isAn
我是一名优秀的程序员,十分优秀!