-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
Description
It seems that for CollectionBatchUpdatesAnimator
and for similar classes init-method was missed. Can you add it on next update?)
public class CollectionBatchUpdatesAnimator: Animator<UICollectionView> {
public override func perform(in collection: UICollectionView, animated: Bool, operation: () -> Void) {
if animated {
collection.performBatchUpdates(operation)
} else {
operation()
}
}
}