HGPlaceholders
HGPlaceholders copied to clipboard
PlaceholderData Image Not Animated for CollectionView
// animate the cell
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
if placeholder.style?.isAnimated == false {
return
}
guard let placeholderTableViewCell = cell as? PlaceholderTableViewCell else { return }
animate(cell: placeholderTableViewCell)
}
Tableview
has the above to animate the image but there is not one for CollectionView