如何以编程方式制作随时间变化的 UIButton/CollectionViewCell Swift 3
Posted
技术标签:
【中文标题】如何以编程方式制作随时间变化的 UIButton/CollectionViewCell Swift 3【英文标题】:How to make a UIButton/CollectionViewCell that changes with time Swift 3 programmatically 【发布时间】:2017-05-15 08:39:16 【问题描述】:我想在我的 UICollectionView 中创建一个基于计时器更改的对象。对于这个例子,我们会说计时器是一分钟长。当我的 UICollectionView 中的对象被按下时,我希望单元格/按钮内的动画开始。这里有几张图片,所以你可以了解我想要它的样子:
http://imgur.com/gallery/dFS1l
我应该制作什么类型的对象?我将如何制作动画?
【问题讨论】:
【参考方案1】:在你的 cellForItemAtIndexPath 方法中
cell.buttonOutletName.tag = indexPath.row
cell.buttonOutletName.addTarget(target : self , selector : #selector(animateButton(_:)))
然后创建一个函数并执行动画
func animateButton(_ sender : UIButton)
//perform animations to the View
我使用 indexPath.row 来跟踪被点击的行
【讨论】:
以上是关于如何以编程方式制作随时间变化的 UIButton/CollectionViewCell Swift 3的主要内容,如果未能解决你的问题,请参考以下文章