Mon problème est vraiment simple. Je voudrais animer une cellule dans une collectionView. En effet, je voudrais montrer un fond gris derrière la cellule et réduire l’image à l’intérieur.
Ce serait (presque) le même effet que Pinterest:
Je codais cette animation sur des boutons, mais je ne l'avais jamais fait sur une cellule. Comment lier une cellule à une action touchUpInside ou TouchDown, par exemple?
Si vous souhaitez lancer l'animation lorsque vous touchez la cellule, vous pouvez implémenter didHighlightItemAt
. Vous voudrez probablement l'inverser dans didUnhighlightItemAt
:
override func collectionView(_ collectionView: UICollectionView, didHighlightItemAt indexPath: IndexPath) {
UIView.animate(withDuration: 0.5) {
if let cell = collectionView.cellForItem(at: indexPath) as? CustomCell {
cell.imageView.transform = .init(scaleX: 0.95, y: 0.95)
cell.contentView.backgroundColor = UIColor(red: 0.95, green: 0.95, blue: 0.95, alpha: 1)
}
}
}
override func collectionView(_ collectionView: UICollectionView, didUnhighlightItemAt indexPath: IndexPath) {
UIView.animate(withDuration: 0.5) {
if let cell = collectionView.cellForItem(at: indexPath) as? CustomCell {
cell.imageView.transform = .identity
cell.contentView.backgroundColor = .clear
}
}
}
Cela donne:
Essaye ça:
Dans votre coutume UICollectionViewCell
, changez la imageView
transform
lorsque la cellule est sélectionnée,
class CollectionViewCell: UICollectionViewCell
{
@IBOutlet weak var imageView: UIImageView!
override var isSelected: Bool{
didSet{
UIView.animate(withDuration: 2.0) {
self.imageView.transform = self.isSelected ? CGAffineTransform(scaleX: 0.9, y: 0.9) : CGAffineTransform.identity
}
}
}
}
Si vous devez implémenter cette fonctionnalité uniquement pour une cellule spécifique, ajoutez simplement ce code à votre implémentation de cellule:
override var isHighlighted: Bool {
didSet {
UIView.animate(withDuration: 0.5) {
let scale: CGFloat = 0.9
self.transform = self.isHighlighted ? CGAffineTransform(scaleX: scale, y: scale) : .identity
}
}
}
C’est la même réponse que celle suggérée par [pgdev] [1] mais pour isHighlighted
Vous avez plusieurs options.
Vous pouvez implémenter la méthode déléguée de vue de collection collectionView(:didSelectItemAtIndexPath:)
et y placer votre code.
Vous pouvez associer à votre vue un identificateur de gestes tactiles auquel vous souhaitez répondre.
Vous pouvez créer un bouton personnalisé et y installer une image, puis utiliser normalement la méthode IBAction du bouton.
Swift 4.2, à l'intérieur de UICollectionViewCell
//MARK:- Events
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesBegan(touches, with: event)
animate(isHighlighted: true)
}
override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesEnded(touches, with: event)
animate(isHighlighted: false)
}
override func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
super.touchesCancelled(touches, with: event)
animate(isHighlighted: false)
}
//MARK:- Private functions
private func animate(isHighlighted: Bool, completion: ((Bool) -> Void)?=nil) {
let animationOptions: UIView.AnimationOptions = [.allowUserInteraction]
if isHighlighted {
UIView.animate(withDuration: 0.5,
delay: 0,
usingSpringWithDamping: 1,
initialSpringVelocity: 0,
options: animationOptions, animations: {
self.transform = .init(scaleX: 0.96, y: 0.96)
}, completion: completion)
} else {
UIView.animate(withDuration: 0.5,
delay: 0,
usingSpringWithDamping: 1,
initialSpringVelocity: 0,
options: animationOptions, animations: {
self.transform = .identity
}, completion: completion)
}
}
Swift: 4 Vous devez implémenter une UICollectionViewCell
personnalisée, modifier la contentView
OR imageView
transform
lorsque la cellule est sélectionnée
override var isSelected: Bool {
didSet{
UIView.animate(withDuration: 1.0, animations:
{
self.contentView.transform = self.isSelected ? CGAffineTransform(scaleX: 0.95, y: 0.95) : CGAffineTransform.identity
self.contentView.backgroundColor = UIColor(red: 0.95, green: 0.95, blue: 0.95, alpha: 1)
}) { (true) in
UIView.animate(withDuration: 0.5, animations:
{
self.contentView.transform = self.isSelected ? CGAffineTransform(scaleX: 1.0, y: 1.0) : CGAffineTransform.identity
self.contentView.backgroundColor = UIColor.clear
})
}
}
}