UICollectionViewCellのFade Inアニメーションを作る
この記事について
UICollectionViewCellのFade Inアニメーションの作り方
How To
UICollectionViewのdelegateの willDisplay
メソッドでalphaをアニメーションする。
注意: デフォルトではアニメーション中はuserControllがdisableされるので、optionsに .allowUserInteraction
を設定する。これにより、アニメーション中にもスクロールできる。
override func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
cell.alpha = 0
UIView.animate(withDuration: 0.5, delay: 0.0, options: .allowUserInteraction, animations: {
cell.alpha = 1
}, completion: nil)
}
Result
*輪郭の形が変わって見えるのはgifデータの問題です
Author And Source
この問題について(UICollectionViewCellのFade Inアニメーションを作る), 我々は、より多くの情報をここで見つけました https://qiita.com/kokoheia/items/877ba0df22fcf22bf434著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .