Xiaoye220 / EmptyDataSet-Swift

🎄 DZNEmptyDataSet implement with Swift.A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display. DZNEmptyDataSet with Swift.
MIT License
692 stars 99 forks source link

No support for Gif images #36

Closed 1AhmedYasser closed 5 years ago

1AhmedYasser commented 5 years ago

When trying to use gif images it just shows a blank white background

Xiaoye220 commented 5 years ago

I'm sorry to be so late in dealing with this issue. The default value of emptyDataSetShouldAnimateImageView is false. You can overwrite this function and return true, animated images will work.

public extension EmptyDataSetDelegate {
    func emptyDataSetShouldAnimateImageView(_ scrollView: UIScrollView) -> Bool {
        return false
    }
}